Creates a new TabStrip object; can also be called as
PARENT->AddTabStrip(%OPTIONS). Class specific %OPTIONS are:
-bottom => 0/1 (default 0) -buttons => 0/1 (default 0) -hottrack => 0/1 (default 0) -imagelist => Win32::GUI::ImageList object -justify => 0/1 (default 0) -multiline => 0/1 (default 0) -right => 0/1 (default 0) -vertical => 0/1 (default 0)
Change most of the options used when the item was created (see  InsertItem()). Allowed %OPTIONS are:
    -image
    -text
 
Returns the number of items in the TabStrip.
 
 
Removes the specified ITEM from the TabStrip.
 
 
Returns the string associated with the specified ITEM in the TabStrip.
 
 
Adds an item to the TabStrip. Allowed  
 
 
Deletes all items from the TabStrip.
 
 
Selects the zero-based INDEX item in the TabStrip.
 
 
Returns the zero-based index of the currently selected item.
 
%OPTIONS are:
 -image => NUMBER
   the index of an image from the associated ImageList
 -index => NUMBER
   the position for the new item (if not specified, the item
   is added at the end of the control)
 -text  => STRING
   the text that will appear on the item
Sent when the current selection has changed. Use
SelectedItem() to determine the current selection.
 
Sent before the current selection changes. Use  
SelectedItem()
to determine the current selection. The event should return 0 to prevent
the selection changing, 1 to allow it.