Vcl.Forms.TScreen.CustomFormCount
Delphi
property CustomFormCount: Integer read GetCustomFormCount;
C++
__property int CustomFormCount = {read=GetCustomFormCount, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Vcl.Forms.pas Vcl.Forms.hpp |
Vcl.Forms | TScreen |
Description
Indicates the number of forms or property pages displayed on the screen.
Read CustomFormCount to learn the number of forms or property pages currently displayed on the screen. These forms can be accessed by the CustomForms property. CustomFormCount can be used with CustomForms to iterate over all the forms and property pages in an application.
See Also
Code Examples