Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 1.06 KB

File metadata and controls

36 lines (29 loc) · 1.06 KB

CreateListBoxN

Description

Creates a new list box control in a dialog layout. With isMultipleSelect true, the list supports multiple selection.

PROCEDURE CreateListBoxN(
				dialogID           : LONGINT;
				itemID             : LONGINT;
				widthInCharacters  : LONGINT;
				heightInCharacters : LONGINT;
				isMultipleSelect   : BOOLEAN);
def vs.CreateListBoxN(dialogID, itemID, widthInCharacters, heightInCharacters, isMultipleSelect):
    return None

Parameters

Name Type Description
dialogID LONGINT The index of the dialog layout containing the control.
itemID LONGINT The index that will identify the control item.
widthInCharacters LONGINT The width of the control in characters.
heightInCharacters LONGINT The height of the control in characters.
isMultipleSelect BOOLEAN Does the list support multiple selection

Examples

DialogLayoutPulldownMenu

Version

Availability: from VectorWorks10.5

Category