FormComboBoxControl.hideFirstEntry Method [AX 2012]
Sets or returns a value that indicates whether the first entry in the combo box control is hidden.
The following example shows how to return and set the value that indicates whether the first entry in the combo box control is hidden.
boolean bHideFirstEntry; // The ctrl variable was previously assigned // as a form combo box control type. // Retrieve the hideFirstEntry value. bHideFirstEntry = ctrl.hideFirstEntry(); // Set the hideFirstEntry value. bHideFirstEntry = ctrl.hideFirstEntry(true);
Community Additions
ADD
Show: