Older Newer
Mon, 25 Nov 2019 01:43:56 . . . . SyneRyder [First function definition]


Changes by last author:

Added:
= 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 ==

<code>

%fml

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

OnCtl(n):{

setDialogSizeGrip(ctl(0));

return false;

}

</code>