Show a progress dialog that doesn't interrupt the script. The dialog will be displaed after specified dealy time (in miliseconds). ProgressDlgClose must be used to close the dialog.
PROCEDURE ProgressDlgOpenDelay(
title : STRING;
canCancel : BOOLEAN;
delaySec : INTEGER);def vs.ProgressDlgOpenDelay(title, canCancel, delaySec):
return None| Name | Type | Description |
|---|---|---|
| title | STRING | |
| canCancel | BOOLEAN | |
| delaySec | INTEGER |
ProgressDlgOpenDelay('Example', TRUE, 1);import vs
# Show a progress dialog that doesn't interrupt the script.
title = 'Example'
canCancel = True
delaySec = 1
vs.ProgressDlgOpenDelay(title, canCancel, delaySec)Availability: from Vectorworks 2015