Share via


FormControl.userSkip Method

Definition

Overloads

userSkip()

Sets or returns the value that indicates whether the form control is skipped when the user presses the TAB key to navigate the controls in the form.

userSkip(Int32)

userSkip()

Sets or returns the value that indicates whether the form control is skipped when the user presses the TAB key to navigate the controls in the form.

public:
 virtual int userSkip();
[Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly]
public virtual int userSkip ();
[<Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly>]
abstract member userSkip : unit -> int
override this.userSkip : unit -> int
Public Overridable Function userSkip () As Integer

Returns

1 if the user setting to skip the control is in effect; otherwise, 0.

Attributes
Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnlyAttribute

Remarks

The following example shows how to return and set the userSkip property.

int nUserSkip 
// The ctrl variable was previously assigned  
// as a FormControl value. 
// Return the userSkip property. 
nUserSkip = ctrl.userSkip(); 
// Set the userSkip property. 
ctrl.userSkip(1);

Applies to

userSkip(Int32)

public:
 virtual int userSkip(int _value);
[Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly]
public virtual int userSkip (int _value);
[<Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly>]
abstract member userSkip : int -> int
override this.userSkip : int -> int
Public Overridable Function userSkip (_value As Integer) As Integer

Parameters

_value
Int32

The value to assign to the userSkip property; optional. The value is 1 if the user setting to skip the control is in effect; otherwise, the value is 0.

Returns

Attributes
Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnlyAttribute

Applies to