Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 790 Bytes

File metadata and controls

38 lines (30 loc) · 790 Bytes

AngDialog

Description

Function AngDialog displays a dialog box which requests the user to enter an angle value. The dialog automatically screens for valid numeric input, and will accept supported angle formats.

FUNCTION AngDialog(
				request : STRING;
				default : STRING): REAL;
def vs.AngDialog(request, default):
    return REAL

Parameters

Name Type Description
request STRING Dialog user prompt string.
default STRING Default value for input field.

Examples

==== VectorScript ====

AngleValue := AngDialog('Enter an angle value:', '0d');

==== Python ====

AngleValue = vs.AngDialog('Enter an angle value:', '0d')

Version

Availability: from All Versions

Category

  • Dialogs - Predefined