Acad.PromptPointOptions Function
File
Autodesk.AutoCAD.js
Syntax
JavaScript
function Acad.PromptPointOptions(messageAndKeywords);
Group
Parameters
| Parameter | Description |
|---|---|
| messageAndKeywords | is the prompt message along with keywords |
Returns
PromptPointOptions
Description
This class represents optional parameters for a point prompt. This function is derived from Acad.PromptCornerOptions.
Properties
| Name | Type | Description | Condition |
|---|---|---|---|
| allowArbitraryInput | boolean | Gets or sets whether or not the prompt accepts arbitrary input. | Read-write |
| allowNone | boolean | Gets or sets whether or not the prompt accepts Enter as sole input. True if Enter on its own is allowed, false otherwise. | Read-write |
| basePoint | Acad.Point3d | Gets or sets the base point to be used. | Read-write |
| limitsChecked | boolean | Gets or sets whether or not limits checks are carried out on the input value. | Read-write |
| useBasePoint | boolean | Gets or sets whether or not the base point is to be used or not. True if the BasePoint value is to be used, false otherwise. | Read-write |
Exception
Throws a TypeError object.