Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 767 Bytes

File metadata and controls

43 lines (33 loc) · 767 Bytes

VerifyLayout

Description

Checks a specified dialog layout for correct layout definition.

FUNCTION VerifyLayout(dialogID : LONGINT): BOOLEAN;
def vs.VerifyLayout(dialogID):
    return BOOLEAN

Parameters

Name Type Description
dialogID LONGINT The index of the dialog layout to be verified.

Remarks

[DWD 1/20/00]

Examples

VectorScript

{verify the dialog layou is properly constructed}
dialogOK := VerifyLayout(lEditID);

IF (dialogOK & rsAvailable) THEN
BEGIN
lmtestResult := RunLayoutDialog(lEditID,DriveSplashDialog);
END;

Python

Version

Availability: from VectorWorks9.0

Category