setDialogSizeGrip

Syntax

int setDialogSizeGrip(int state)

Arguments

state
Set to 0 to hide the size grip, 1 to enable and show the size grip control.

Return

Always returns true.

Description

Enables or disables the resizing size grip control in the bottom right-hand corner of the window.

Example

%fml

ctl(0): CHECKBOX, "Enable Size Grip"

OnCtl(n):{
  setDialogSizeGrip(ctl(0));
  return false;
}