Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 880 Bytes

File metadata and controls

38 lines (28 loc) · 880 Bytes

CreateRadioButton

Description

Creates a new radio button control in a dialog layout.

Radio button groups can be created by defining two or more radio buttons with consecutive index values. When defined as a button group, VectorScript will handle selection-deselection of controls within the group.

PROCEDURE CreateRadioButton(
				dialogID : LONGINT;
				itemID   : LONGINT;
				text     : STRING);
def vs.CreateRadioButton(dialogID, itemID, text):
    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.
text STRING The display text for the control.

Remarks

[DWD 1/20/00]

Examples

mplexDialogLayout2}}

Version

Availability: from VectorWorks9.0

Category

  • Dialogs - Modern