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

Version 1 Current »

Description

Gets the number of items in the drop list user control that is specified by userControlID.

Functional area

User Window

Command syntax

Syntax

getNumDropListItems userControlID

Arguments

NameTypeRequiredComments
userControlIdintyesID of user control to operate on.

Flags

None

Return value

integer

Examples

// Get the number of Drop List User Control items
int $windowId;
int $controlId;
int $numItems;

// First create a User Window to place the Control on
$windowId = `createWindow "MyWindow"`;

// Create the User Control on the Window.
$controlId = `createDropList $windowId`;

// Add some items to the Drop List.
addDropListItem $controlId "Item 1";
addDropListItem $controlId "Item 2";
addDropListItem $controlId "Item 3";

// Get the number of items
$numItems = `getNumDropListItems $controlId`;
print $numItems;

Additional information

Related commands

  • No labels