FormDataObject.skip Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
skip() |
Sets or returns a value that indicates whether the control is skipped when the user presses the TAB key to move to the control that is associated with the data source. |
skip(Boolean) |
skip()
Sets or returns a value that indicates whether the control is skipped when the user presses the TAB key to move to the control that is associated with the data source.
public:
virtual bool skip();
public virtual bool skip ();
abstract member skip : unit -> bool
override this.skip : unit -> bool
Public Overridable Function skip () As Boolean
Returns
true if the control is skipped when the user presses the TAB key to move to the control that is associated with the data source; otherwise, false.
Remarks
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. Controls are skipped if either the control's skip value is true or the data source's skip value is true.
The following shows how to retrieve and set the skip property of a data source for 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);
Applies to
skip(Boolean)
public:
virtual bool skip(bool _value);
public virtual bool skip (bool _value);
abstract member skip : bool -> bool
override this.skip : bool -> bool
Public Overridable Function skip (_value As Boolean) As Boolean
Parameters
- _value
- Boolean
The value to assign to the skip property of the data source that is associated with the control; optional.