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

Sets the Decimal value of a given column.

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

SetDecimal has several forms, depending on the input parameters:

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

 

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