[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Enum type defining what types of windows can be created.
Source position: fpg_base.pas line 54
type TWindowType = ( |
||
wtChild, |
|
The window being created is a child on another window. This normally means no titlebar or window borders are going to be created. |
wtWindow, |
|
This would specify a standard window with titlebar and window borders. |
wtModalForm, |
|
This windows type is similar to wtWindow, but grabs focus. |
wtPopup |
|
This window will normally not have a titlebar or window borders. |
); |