FormComboBoxControl.userSkip Method

Definition

Overloads

userSkip()

Sets or returns the value that indicates whether the form combo box 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 combo box control is skipped when the user presses the TAB key to navigate the controls in the form.

public:
 override int userSkip();
[Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly]
public override int userSkip ();
[<Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly>]
override this.userSkip : unit -> int
Public Overrides 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 
// FormComboBoxControl variable. 
// Return the userSkip property. 
nUserSkip = ctrl.userSkip(); 
// Set the userSkip property. 
ctrl.userSkip(1);

Applies to

userSkip(Int32)

public:
 override int userSkip(int _value);
[Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly]
public override int userSkip (int _value);
[<Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly>]
override this.userSkip : int -> int
Public Overrides 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