You are here: Symbol Reference > MtxGrid Namespace > Classes > TCustomMtxVecGrid Class > public > TCustomMtxVecGrid.AppendRow Method
MtxVec VCL
ContentsIndex
PreviousUpNext
TCustomMtxVecGrid.AppendRow Method

Adds new row to matrix or vector.

Pascal
procedure AppendRow;
procedure Example(Vec: TVec; Grid: TMtxGrid); begin // enable editing and appending Grid.AllowAppend := True; Grid.Editable := True; Grid.Datasource := Vec; Grid.AppendRow; end;
void __fastcall Example(TVec *Vec, TMtxGrid *Grid); { // enable editing and appending Grid->AllowAppend = true; Grid->Editable = true; Grid->Datasource = Vec; Grid->AppendRow(); end;
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!