FormTreeControl.userHide 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
userHide() |
Returns or sets the value that indicates whether the form tree control is hidden from the user. |
userHide(Int32) |
userHide()
Returns or sets the value that indicates whether the form tree control is hidden from the user.
public:
override int userHide();
[Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly]
public override int userHide ();
[<Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly>]
override this.userHide : unit -> int
Public Overrides Function userHide () As Integer
Returns
1 if the tree control is hidden from the user; otherwise, 0.
- Attributes
-
Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnlyAttribute
Remarks
The user specifies whether a control is hidden by right-clicking the control when it is viewable or by right-clicking another control when the original control is hidden. A right-click opens a menu that can be used to hide or display the control. This method lets you programmatically determine and set the value.
The following example shows how to return and set the value that specifies whether the form tree control is hidden from the user.
int nUserHide;
// The ctrl variable was previously assigned
// as a form tree control variable.
// Retrieve the userHide value.
nUserHide = ctrl.userHide();
// Set the userHide value.
ctrl.userHide(1);
Applies to
userHide(Int32)
public:
override int userHide(int _value);
[Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly]
public override int userHide (int _value);
[<Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnly>]
override this.userHide : int -> int
Public Overrides Function userHide (_value As Integer) As Integer
Parameters
- _value
- Int32
The value that indicates whether the form tree control is hidden from the user.
Returns
- Attributes
-
Microsoft.Dynamics.BusinessPlatform.SharedTypes.InternalUseOnlyAttribute