Constructs a new AcEdPromptPointOptions with a given prompt message.
The message to show to the user in the prompt.
Gets or sets whether the user is allowed to press Enter to specify no point.
Corresponds to PromptPointOptions.AllowNone in AutoCAD .NET.
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 used for relative selection.
In AutoCAD .NET, this is PromptPointOptions.BasePoint.
When useBasePoint is true, a rubber-band line will be drawn from the base point to the cursor.
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 point should be used when prompting the next point.
In AutoCAD .NET, this is PromptPointOptions.UseBasePoint.
If true, the prompt will display a visual line from the base point to the cursor.
Gets or sets whether a dashed line should indicate the base point.
Corresponds to PromptPointOptions.UseDashedLine.
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.
Represents options for prompting the user to select a point, similar to AutoCAD .NET
PromptPointOptionsandPromptCornerOptions.Supports specifying a base point, keywords, and how the message is displayed.