Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Scroll tablelayout
sortDirectionASC
repeatTableHeadersdefaultstyle
widths11%, 15%, 14%, 13%, 47%
style
sortByColumn1
sortEnabledfalse
cellHighlightingtrue

...

Return value

integer

Examples

Code Block
languagetext
// Create a Tab control and add two tabs 

...

int $windowId;

...


int $tabControl;

...


int $firstTab;

...


int $secondTab;

...


// First create a User Window to place the Control on

...


$windowId = `createWindow "MyWindow"`; 

...

//create a tab control

...


$tabControl = `createTab $windowId`; 

...

//add tabs

...


$firstTab = `addTab $tabControl "First"`;

...


$secondTab = `addTab $tabControl "Second"`;

Additional information

Related commands

...