Versions Compared

Key

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

...

float

Scroll pagebreak

Examples

Code Block
languagetext
// Get the value of a Num Box User Control

...


int $windowId;

...


int $controlId;

...


float $val;

...


 

...

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

...


$windowId = `createWindow "MyWindow"`;

...


 

...

// Create the User Control on the Window. 

...

$controlId = `createNumBox $windowId -flt -num -10.75`;

...


 

...

// Get the value of the Num Box

...


$val = `getNumBoxNum $controlId`;

...


print $val;

Additional information

Related commands

...