Versions Compared

Key

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

...

Scroll tablelayout
sortDirectionASC
repeatTableHeadersdefaultstyle
widths12%, 15%, 14%, 13%, 46%
style
sortByColumn1
sortEnabledfalse
cellHighlightingtrue

...

Return value

integer

Examples

Code Block
languagetext
// Create a Push Button User Control.

...


int $windowId;

...


int $controlId;

...


int $rect[4];

...


 

...

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

...


$windowId = `createWindow "MyWindow"`;

...


 

...

// Position the Control

...


$rect[0] = 20;  // Left

...


$rect[1] = 20;  // Top

...


$rect[2] = 80;  // Right

...


$rect[3] = 45;  // Bottom

...


 

...

// Create the Control on the Window, passing

...


// in the Window Id of the User Window we 

...


// just created. Make it the default button in the User Window

...


$controlId = `createPushButton $windowId -pos $rect -def -text "Push Me!"`;