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

Sets int value of given column.

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

SetInt32 has several forms, depending on the input parameters:

  • Sets the int 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 as an int.
  • Sets the int 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 as an int.

 

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