Core Function GUITabSheet
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> GUITabSheet( <tabsheet> ) </pre> === Description === Properties & Functions specifically for TabSheet === Parameters === ==== tabsheet==== The TabSheet GUI object to u...")
Newer edit →
(Created page with "<pre> GUITabSheet( <tabsheet> ) </pre> === Description === Properties & Functions specifically for TabSheet === Parameters === ==== tabsheet==== The TabSheet GUI object to u...")
Newer edit →
Revision as of 09:07, 18 January 2013
GUITabSheet( <tabsheet> )
Contents |
Description
Properties & Functions specifically for TabSheet
Parameters
tabsheet
The TabSheet GUI object to use.
Functions
DelPage
Delete a page
GUITabSheet($Tab, "DelPage", 0);
SelectedIndex
Returns the index of the currently open page
my $Index = GUITabSheet($Tab, "SelectedIndex");
SelectedText
Returns the text of the currently open page
my $Text = GUITabSheet($Tab, "SelectedText");
Example
Go see GUICreate( "TabSheet" ) for example.