Vcl.Forms.TScreen.CustomForms

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property CustomForms[Index: Integer]: TCustomForm read GetCustomForms;

C++

__property TCustomForm* CustomForms[int Index] = {read=GetCustomForms};

Properties

Type Visibility Source Unit Parent
property public
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms TScreen

Description

Lists all the forms and property pages that are currently displayed in the application.

Use CustomForms to access a form or property page by index. The value of Index is a number between zero (the first custom form) and CustomFormCount - 1. CustomForms can be used with CustomFormCount when an application needs to iterate over all its forms and property pages.

Unlike the Forms property, CustomForms lists TCustomForm descendants that do not derive from TForm (such as property pages).

Warning: The order in which CustomForms lists its forms is affected by the Z order of the forms. Do not change the Z order of forms when using CustomForms to iterate over the forms in an application.

See Also

Code Examples