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