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

Sets byte value of given column.

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

SetByte has several forms, depending on the input parameter:

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

 

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