FormTreeControl.widthValue Method [AX 2012]
Gets or sets the width of the control.
The following example shows how to return and set the width value of a form tree control.
int nWidthValue; // The ctrl variable was previously assigned // as a form tree control value. // Retrieve the width value. nWidthValue = ctrl.widthValue(); // Set the width value. ctrl.widthMode(-1); ctrl.widthValue(160);
Community Additions
ADD
Show: