FMX.Types.TFmxObject.InsertObject
Delphi
procedure InsertObject(Index: Integer; const AObject: TFmxObject);
C++
void __fastcall InsertObject(int Index, TFmxObject* const AObject);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | FMX.Types.pas FMX.Types.hpp |
FMX.Types | TFmxObject |
Description
Adds the object provided in the parameter to the FChildren TList of this object (self), at the specified position (index).
The InsertObject method is similar to the AddObject method, except that InsertObject inserts the given object to the given position specified by the Index
parameter.