FormControl.heightValue 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
heightValue() |
Gets or sets the height of the control. |
heightValue(Int32) |
heightValue()
Gets or sets the height of the control.
public:
virtual int heightValue();
public virtual int heightValue ();
abstract member heightValue : unit -> int
override this.heightValue : unit -> int
Public Overridable Function heightValue () As Integer
Returns
The height in pixels.
Remarks
The height of the control is not changed unless the Exact height calculation mode is used.
The following example shows how to return and set the height value of a form control.
int nHeightValue;
// The ctrl variable was previously assigned
// as a form control variable.
// Retrieve the height value.
nHeightValue = ctrl.heightValue();
// Set the height value.
ctrl.heightMode(-1);
ctrl.heightValue(22);
Applies to
heightValue(Int32)
public:
virtual int heightValue(int _value);
public virtual int heightValue (int _value);
abstract member heightValue : int -> int
override this.heightValue : int -> int
Public Overridable Function heightValue (_value As Integer) As Integer
Parameters
- _value
- Int32
An integer value that specifies the height in pixels; optional.