Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1.47 KB

File metadata and controls

49 lines (36 loc) · 1.47 KB

AddChoice

Description

Adds an item to the component's choices.

The valid components are created by CreatePullDownMenu, CreatePullDownMenuGroupBox, CreateListBox, CreateListBoxN.

PROCEDURE AddChoice(
				dialogID    : LONGINT;
				componentID : LONGINT;
				choiceText  : STRING;
				itemIndex   : INTEGER);
def vs.AddChoice(dialogID, componentID, choiceText, itemIndex):
    return None

Parameters

Name Type Description
dialogID LONGINT the dialog identifier given by CreateLayout or CreateResizableLayout
componentID LONGINT The identifier for the component that contains the choices.
choiceText STRING The text for the item that is about to be added.
itemIndex INTEGER The index after which the new item is to be added.

Remarks

For components created by CreateEnhancedPullDownMenu, InsertEnhancedPullDownMenuItem should be used.

Examples

DialogLayoutPulldownMenu

See Also

For further information, please check out: CreatePullDownMenu

CreatePullDownMenuGroupBox

CreateListBox

CreateListBoxN

Version

Availability: from Vectorworks 2010

Category