winframe class : Height getter
Description
Gets a height of a window.
Syntax
winframeInstance.Height
Arguments
None
Return value
Class | Description |
int | A height of a window. |
Sample code
1: | wfpool wfp; |
2: | winframe winframeIns = wfp.GetActive(); // Gets a window that has focus. |
3: | int h = winframeIns.Height; |
Notes
The unit is physical pixel.
Links for reference
None.