Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 8 Next »

Description

Gets the time value of the time box user control specified by userControlID.

The return value is in frames, regardless of the time display style setting in the Preferences.

Functional area

User Window

Command syntax

Syntax

getTimeBoxTime userControlID

Arguments

NameTypeRequiredComments
userControlIdintyesID of user control to operate on.

Flags

None

Return value

integer

Examples

// Get the time value of a Time Box User Control
int $windowId;
int $controlId;
int $time;
 
// First create a User Window to place the Controls on
$windowId = `createWindow "MyWindow"`;
 
// Create the User Control on the Window.
$controlId = `createTimeBox $windowId`;
 
// Set the time to some arbitrary frame
setTimeBoxTime $controlId 125;
 
// Get the time we just set
$time = `getTimeBoxTime $controlId`;
print $time;

Additional information

Related commands

  • No labels