Vcl.Controls.TWinControl.DoFlipChildren

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoFlipChildren; dynamic;

C++

DYNAMIC void __fastcall DoFlipChildren();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls TWinControl

Description

Flips the control's children.

The FlipChildren method calls DoFlipChildren to reverse the positions of child controls. DoFlipChildren moves the control's children to opposite positions on the control; that is, children on the left side of the control are moved to the right side of the control and vice versa.

Override FlipChildren to control how the control's children are flipped.

Note: DoFlipChildren is a protected helper method for the public FlipChildren method. Unlike FlipChildren, DoFlipChildren does not adjust the alignment of controls that are aligned to one of the edges of the windowed control.

See Also