FormsSetLeft |
Top Previous Next |
Prototype
FormSetLeft(intFormHandle,intValue)
Description
Sets the windows left coordinate.
Parameters
intFormHandle: integer number corresponding to the window handle.
IntValue: integer number corresponding to the left coordinate .
Returned value
None.
Notes
If intFormHandle is 0 the function processes the application mail window.
Example
//It initializes an integer variable representing a new form height value NewLeft:=600;
//It sets new left side FormSetleft(HandleForm, NewLeft); |