Package Win32::GUI::Header
Constructor
Methods
ChangeItem(INDEX, %OPTIONS)
Changes the options for an item in the Header control. Returns nonzero if successful, zero otherwise. For a list of the available options see InsertItem().
Clear() Deletes all items from the control.
Count() Returns the number of items in the Header control.
DeleteItem(INDEX) Deletes the zero-based INDEX item from the Header.
HitTest(X, Y) Checks if the specified point is on an Header item; it returns the index of the found item or -1 if none was found. If called in an array context, it returns an additional value containing more info about the position of the specified point.
InsertItem(%OPTIONS) Inserts a new item in the Header control. Returns the newly created item zero-based index or -1 on errors. %OPTIONS can be:-index => position
-image => index of an image from the associated ImageList
-bitmap => Win32::GUI::Bitmap object
-width => pixels
-height => pixels
-text => string
-align => left|center|right
Events
BeginTrack(INDEX, WIDTH)
Sent when a divider of the Header control is being moved; the event must return 0 to prevent moving the divider, 1 to allow it. Passes the zero-based INDEX of the item being resized and its current WIDTH.
DividerDblClick(INDEX) Sent when the user double-clicked on a divider of the Header control.
EndTrack(INDEX, WIDTH) Sent when a divider of the Header control has been moved. Passes the zero-based INDEX of the item being resized and its current WIDTH.
ItemClick(INDEX) Sent when the user clicked on a Header item.
ItemDblClick(INDEX) Sent when the user double-clicked on a Header item.
3 POD Errors
The following errors were encountered while parsing the POD:
- Around line 95:
You can't have =items (as at line 99) unless the first thing after the =over is an =item
- Around line 116:
You can't have =items (as at line 120) unless the first thing after the =over is an =item
- Around line 203:
You can't have =items (as at line 207) unless the first thing after the =over is an =item