FormControl.heightValue Method [AX 2012]
Gets or sets the height of the control.
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);
Community Additions
ADD
Show: