TcxGridServerModeTableView.CreateColumn Method
In This Article
Creates a new column and adds it to the Columns collection.
#Declaration
Delphi
function CreateColumn: TcxGridServerModeColumn;
#Returns
Type | Description |
---|---|
Tcx |
The created column. |
#Remarks
Call the CreateColumn
function to create a new Server Mode column. The Columns property provides indexed access to all columns in the Server Mode Table grid View.
Tip
You can call the Data
#Grid Column Deletion
To delete a grid column, release it directly in code (call the Free procedure in Delphi or use the delete
keyword in C++Builder):
See Also