Constructs a new AcEdPromptAngleOptions with a given prompt message.
The prompt message shown to the user.
Gets or sets whether negative-valued angles are accepted.
While not always documented directly on PromptAngleOptions, numerical prompts in AutoCAD
often support negative input via a similar property. (Analogous to PromptNumericalOptions)
Gets or sets whether zero-valued angles are accepted.
Corresponds to PromptAngleOptions.AllowZero.
Gets or sets whether keywords should be appended automatically to the message when rendering.
In AutoCAD .NET, this is PromptOptions.AppendKeywordsToMessage.
Gets or sets the base point for the angle prompt.
Corresponds to PromptAngleOptions.BasePoint.
Gets or sets the default angle value (in degrees or radians, depending on your implementation).
This is used when the user presses ENTER, if useDefaultValue is true.
Corresponds to PromptAngleOptions.DefaultValue.
Gets whether this AcEdPromptOptions is read-only.
When read-only, properties such as message and appendKeywordsToMessage cannot be changed.
Corresponds to PromptOptions.IsReadOnly.
Gets or sets the preview jig in the prompt.
Gets the collection of keywords for this prompt.
Mirrors PromptOptions.Keywords in AutoCAD .NET API.
Gets or sets the message displayed in the prompt.
Corresponds to PromptOptions.Message in AutoCAD .NET API.
Gets or sets whether the base "angle base" should be used.
Corresponds to PromptAngleOptions.UseAngleBase.
Gets or sets whether to use the base point for the prompt.
When true, the prompt may render a dashed line from the base point to the cursor.
Corresponds to PromptAngleOptions.UseBasePoint.
Gets or sets whether a dashed line should indicate the base point.
Corresponds to PromptAngleOptions.UseDashedLine.
Gets or sets whether the default value is used when the user presses ENTER.
Corresponds to PromptAngleOptions.UseDefaultValue.
Sets both the prompt message and the display keywords from a single combined string.
This corresponds to PromptOptions.SetMessageAndKeywords(string messageAndKeywords, string globalKeywords) in the .NET API.
The messageAndKeywords string is typically of the form "Message text [Keyword1/Keyword2/...]".
The globalKeywords parameter is a space-separated list of global keyword names.
After calling this, the message is updated to the part before the [ ... ], and the keywords collection
is updated to contain the specified global keywords.
The combined message and keywords for the prompt.
A space-separated string listing the global names of the keywords.
Options for prompting the user to enter an angle, similar to AutoCAD .NET
PromptAngleOptions.Supports a base point, default angle, keywords, and various validation flags.