Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.07 KB

File metadata and controls

40 lines (31 loc) · 1.07 KB

CreateTabPane

Description

Creates a tab pane within a tab control on a dialog.

To define a tab pane, create a group control and add items to the group. Arrange the items within the group. Then call CreateTabPane to add a new tab pane to a tab control. Specify the group that defines the layout of that tab pane.

PROCEDURE CreateTabPane(
				dialogID : LONGINT;
				itemID   : LONGINT;
				groupID  : LONGINT);
def vs.CreateTabPane(dialogID, itemID, groupID):
    return None

Parameters

Name Type Description
dialogID LONGINT The id of the dialog.
itemID LONGINT The id of the Tab Control to which this tab pane will be added.
groupID LONGINT The id of the group that defines the tab pane.

Examples

ComplexDialogLayout2

See Also

VS Functions: CreateTabControl | CreateGroupBox | RunLayoutDialog

Version

Availability: from VectorWorks10.5

Category