Data.DB.TBooleanField.Value

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: TBooleanField

Delphi

property Value: Boolean read GetAsBoolean write SetAsBoolean;

C++

__property bool Value = {read=GetAsBoolean, write=SetAsBoolean, nodefault};

Description

Represents the value of the data in the Boolean field.

Use Value to read data from and write data to a Boolean field object at runtime. Using Value is the same as using the AsBoolean property. Use Value when you know the field component is a Boolean field. Use AsBoolean when working with a generic field component.

See Also