Gets or sets whether the user may press ENTER without selecting an entity.
Corresponds to PromptEntityOptions.AllowNone.
Gets or sets whether entities on locked layers can be selected.
Corresponds to PromptEntityOptions.AllowObjectOnLockedLayer.
Gets or sets whether keywords should be appended automatically to the message when rendering.
In AutoCAD .NET, this is PromptOptions.AppendKeywordsToMessage.
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 the rejection message shown when the selected entity is invalid.
Corresponds to PromptEntityOptions.RejectMessage.
Adds an allowed entity class name.
Corresponds to PromptEntityOptions.AddAllowedClass().
Entity class name (e.g. "Line", "Circle")
Clears all allowed class restrictions (allow all entities).
Checks whether a given entity class is allowed. Used internally by selection logic.
Removes an allowed entity class name.
Corresponds to PromptEntityOptions.RemoveAllowedClass().
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.
Sets the rejection message.
Corresponds to PromptEntityOptions.SetRejectMessage().
Represents prompt options for selecting a single entity. Mirrors
Autodesk.AutoCAD.EditorInput.PromptEntityOptions.