ReportGuidControl.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:
 virtual int heightMode();
public virtual int heightMode ();
abstract member heightMode : unit -> int
override this.heightMode : unit -> int
Public Overridable Function heightMode () As Integer

Returns

The calculation mode.

Remarks

Calculate the height according to the following table:

Mode. Height Calculation.
Exact. The exact height in pixels of the controls 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 mode is set to auto or column height.

Applies to

heightMode(Int32)

public:
 virtual int heightMode(int _value);
public virtual int heightMode (int _value);
abstract member heightMode : int -> int
override this.heightMode : int -> int
Public Overridable Function heightMode (_value As Integer) As Integer

Parameters

_value
Int32

Returns

Applies to