MeasurementEditbox
QuickLinks
Hierarchy
Properties
Property | Type | Access | Description |
---|---|---|---|
editContents | string | r/w | The default value in an editbox control. Note: Do not specify both edit contents and edit value. If both are specified, the one that occurs later in the script is used. |
editUnits | MeasurementUnits: MeasurementUnits.POINTS MeasurementUnits.PICAS MeasurementUnits.INCHES MeasurementUnits.INCHES_DECIMAL MeasurementUnits.MILLIMETERS MeasurementUnits.CENTIMETERS MeasurementUnits.CICEROS MeasurementUnits.CUSTOM MeasurementUnits.AGATES MeasurementUnits.U MeasurementUnits.BAI MeasurementUnits.MILS MeasurementUnits.PIXELS MeasurementUnits.Q MeasurementUnits.HA MeasurementUnits.AMERICAN_POINTS |
r/w | The measurement units to display in the measurement control. |
editValue | number | r/w | The real number default value of the editbox or combobox. Note: For measurement controls, the value is interpreted in points. The points value is converted to edit units when the dialog opens. Note: Do not specify both edit value and edit contents. If both are specified, the one that occurs later in the script is used. |
eventListeners | EventListeners EventListener | readonly | A collection of event listeners. |
events | Events Event | readonly | A collection of events. |
id | number | readonly | The unique ID of the MeasurementEditbox. |
index | number | readonly | The index of the MeasurementEditbox within its containing object. |
isValid | bool | readonly | Returns true if the object specifier resolves to valid objects. |
largeNudge | number | r/w | The amount to increment/decrement the value when a user selects the control and holds down the Shift key while pressing an arrow key on the keyboard. |
maximumValue | number | r/w | The maximum value that a user is allowed to type in a numeric editbox or combobox. Note: The value for a measurement editbox or combobox is interpreted in points, regardless of the edit units specified for the control. The points value is converted automatically to the edit unit when the dialog is opened. |
minWidth | number | r/w | The width of the control. For an editbox or combobox, specifies the minimum width of the box. |
minimumValue | number | r/w | The minumim value that a user is allowed to type in a numeric editbox or combobox. Note: The value for a measurement editbox or combobox is interpreted in points, regardless of the edit units specified for the control. The points value is converted automatically to the edit unit when the dialog is opened. |
parent | BorderPanel DialogColumn DialogRow EnablingGroup |
readonly | The parent of the MeasurementEditbox (a DialogColumn, DialogRow, EnablingGroup or BorderPanel). |
properties | Object | r/w | A property that allows setting of several properties at the same time. |
smallNudge | number | r/w | The amount to increment/decrement the value when the user selects the control and presses an arrow key on the keyboard. |
Methods
Instances
EventListener addEventListener (eventType:
string, handler:
varies[, captures:
bool=false])
Adds an event listener.
Parameter | Type | Description |
---|---|---|
eventType | string | The event type. |
handler | File JavaScript Function | The event handler. Can accept: File or JavaScript Function. |
captures | bool | This parameter is obsolete. (Optional) (default: false) |
Array
of MeasurementEditbox getElements ()
Resolves the object specifier, creating an array of object references.
bool removeEventListener (eventType:
string, handler:
varies[, captures:
bool=false])
Removes the event listener.
Parameter | Type | Description |
---|---|---|
eventType | string | The registered event type. |
handler | File JavaScript Function | The registered event handler. Can accept: File or JavaScript Function. |
captures | bool | This parameter is obsolete. (Optional) (default: false) |
string toSource ()
Generates a string which, if executed, will return the MeasurementEditbox.
Used in:
MeasurementEditbox MeasurementEditboxes.nextItem (obj: MeasurementEditbox)
MeasurementEditbox MeasurementEditboxes.previousItem (obj: MeasurementEditbox)
Return
Array of MeasurementEditbox MeasurementEditbox.getElements ()
MeasurementEditbox MeasurementEditboxes.[] (index: number)
MeasurementEditbox MeasurementEditboxes.add ([withProperties: Object])
MeasurementEditbox MeasurementEditboxes.anyItem ()
Array of MeasurementEditbox MeasurementEditboxes.everyItem ()
MeasurementEditbox MeasurementEditboxes.firstItem ()
MeasurementEditbox MeasurementEditboxes.item (index: varies)
MeasurementEditbox MeasurementEditboxes.itemByID (id: number)
Array of MeasurementEditbox MeasurementEditboxes.itemByRange (from: varies, to: varies)
MeasurementEditbox MeasurementEditboxes.lastItem ()
MeasurementEditbox MeasurementEditboxes.middleItem ()
MeasurementEditbox MeasurementEditboxes.nextItem (obj: MeasurementEditbox)
MeasurementEditbox MeasurementEditboxes.previousItem (obj: MeasurementEditbox)
Jongware, 29-Apr-2012 v3.0.3i | Contents :: Index |