Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 904 Bytes

File metadata and controls

44 lines (35 loc) · 904 Bytes

ProgressDlgOpenDelay

Description

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

Parameters

Name Type Description
title STRING
canCancel BOOLEAN
delaySec INTEGER

Examples

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)

Version

Availability: from Vectorworks 2015

Category