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

Sets the boolean value of a given column.

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

SetBoolean has several forms, depending on the input parameter:

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

 

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