RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TriggerReadWriteRow.SetObject Method (int, object)

Sets value of given column.

Pascal
function SetObject(columnName: string; value: object): void;
function SetObject(ordinal: Integer; value: object): void;
C++
void SetObject(string columnName, object value);
void SetObject(int ordinal, object value);

SetObject has several forms, depending on the input parameters:

  • Sets the value of a given column. The parameter columnName is the name of the column containing the value to be changed. The parameter value is the new value.
  • Sets the value of a given column. The parameter ordinal is the ordinal of the column containing the value to be changed. The parameter value is the new value.

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!