FMX.Controls.TControl.ChildrenRect
Delphi
property ChildrenRect: TRectF read GetChildrenRect;
C++
__property System::Types::TRectF ChildrenRect = {read=GetChildrenRect};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | FMX.Controls.pas FMX.Controls.hpp |
FMX.Controls | TControl |
Description
Specifies the bigger rectangle area occupied by parent and children controls.
ChildrenRect is a rectangle obtained by performing a union operation between the rectangles occupied by the parent control and the children controls.
- Use the ChildrenRect.Width property on the parent, to obtain the width of the rectangle.
- Use the ChildrenRect.Height property on the parent, to obtain the height of the rectangle.
- Note: They are read-only properties.