FormsSetHeight

Top  Previous  Next

Prototype

 

FormSetHeight(intFormHandle,intValue)

 

Description

 

Sets windows height.

 

Parameters

 

intFormHandle: integer number corresponding to the window handle.

 

IntValue: integer number corresponding to the windows height

 

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

NewHeight:=600;

 

//It sets new height

FormSetHeight(HandleForm, NewHeight);