FMX.Grid.TGridModel.InsertColumn

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure InsertColumn(const Index: Integer; const Column: TColumn);

C++

void __fastcall InsertColumn(const int Index, TColumn* const Column);

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid TGridModel

Description

Inserts the specified column into the model, at the specified column number.

Columns that have Index or a higher value as column number are moved one position to the right (their column number is increased by 1).

If Column is nil, InsertColumn raises an EArgumentNilException exception with the following message:

Argument must not be nil

See Also