FormReferenceObject.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:
override bool skip();
public override bool skip ();
override this.skip : unit -> bool
Public Overrides Function skip () As Boolean
Returns
true if the control is skipped when the user presses the TAB key to move to the control 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 the skip value of either the control or the data source is true.
Applies to
skip(Boolean)
public:
override bool skip(bool _value);
public override bool skip (bool _value);
override this.skip : bool -> bool
Public Overrides Function skip (_value As Boolean) As Boolean
Parameters
- _value
- Boolean
The value that is assigned to the skip property of the data source that is associated with the control; optional.