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

Sets double value of given column.

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

SetDouble has several forms, depending on the input parameters:

  • Sets the double 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 a double.
  • Sets the double 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 a double.

 

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