Share via


FormTreeControl.heightMode Method

Definition

Overloads

heightMode()

Gets or sets a calculation mode for the height of the control.

heightMode(Int32)

heightMode()

Gets or sets a calculation mode for the height of the control.

public:
 override int heightMode();
public override int heightMode ();
override this.heightMode : unit -> int
Public Overrides Function heightMode () As Integer

Returns

The height calculation mode.

Remarks

Calculate the height according to the following table.

Mode Height calculation
Exact The exact height of the control in pixels is used.
Auto The height of the control is calculated automatically, and the value parameter is ignored.
Column height The layout of the form determines the height of the control.

The height of the control might change when the calculation mode is set to Auto or Column height.

The following example shows how to return and set the height calculation mode for a form tree control.

int nHeightMode; 
; 
// The ctrl variable was previously assigned 
// as a form tree control variable. 
// Retrieve the height mode. 
nHeightMode = ctrl.HeightMode(); 
// Set the height mode. 
ctrl.heightMode(-1); 
// Set the height. 
ctrl.heightValue(160);

Applies to

heightMode(Int32)

public:
 override int heightMode(int _value);
public override int heightMode (int _value);
override this.heightMode : int -> int
Public Overrides Function heightMode (_value As Integer) As Integer

Parameters

_value
Int32

An Integer data type value that indicates how the height of the control is calculated. This value can be -1 for Exact mode, 0 for Auto mode, or 1 for Column height mode.

Returns

Applies to