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

Sets short value of given column.

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

SetInt16 has several forms, depending on the input parameters:

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

 

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