This documentation is archived and is not being maintained.
FormControl.skip Method [AX 2012]
Sets or returns a value that indicates whether the control is skipped when the user presses the TAB key to move to the control.
public boolean skip([boolean value])
Run On Client
Parameters
value
Type: boolean
The value to assign to the skip property of the control; optional.
Return Value Type:
boolean
true if the control is skipped when the user presses the TAB key to move to the control; otherwise, false .
If the enabled property is true , the allowEdit property is false , and the skip property is true , the user cannot change the contents of the control but can still copy the contents of the control.
The following code example shows how to return and set the skip property of a control.
// Return the value of the skip property.
info(strfmt("skip: %1", this.skip()));
// Set the value of the skip property.
this.skip(true);