cancelButtonText |
Sets the text label on the Cancel button. The default text label is "Cancel". |
isBackgroundTranslucent |
Gets and sets if the dialog background is translucent. This is false by default |
isCancelButtonShown |
Gets and sets if the cancel button is included in the dialog. This is false by default. |
isShowing |
Gets if the Progress Dialog is currently being displayed |
isValid |
Indicates if this object is still valid, i.e. hasn't been deleted or some other action done to invalidate the reference. |
maximumValue |
The maximum value of the progress bar. This is used along with the minimum value and the progress value to compute the current percentage complete. |
message |
Gets and sets the message to display along with the progress bar. The following symbols can be used to display values. "%p" is replaced by the percentage completed. "%v" is replaced by the current value. %m is replaced by the total number of steps. For example, the message "Processing section %v of %m." will result in the message "Processing section 1 of 10." to be displayed if the maximum value is 10 and the current value is 1. Specify an empty string ("") for no message to appear along with the progress panel. |
minimumValue |
The minimum value of the progress bar. This is used along with the maximum value and the progress value to compute the current percentage complete. This is also the initial progress value when the progress bar is first displayed. |
objectType |
This property is supported by all objects in the API and returns a string that contains the full name (namespace::objecttype) describing the type of the object.
It's often useful to use this in combination with the classType method to see if an object is a certain type. For example: if obj.objectType == adsk.core.Point3D.classType(): |
progressValue |
Gets and sets the current progress bar value. Progress is determined based on this value relative to the minimum and maximum values. This will update the values displayed in the message string. |
title |
Gets and sets the title of the progress dialog |
wasCancelled |
Indicates if the cancel button was selected the last time the Progress Dialog was shown. |