Data.DB.TBooleanField.Value

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Value: Boolean read GetAsBoolean write SetAsBoolean;

C++

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

Properties

Type Visibility Source Unit Parent
property public
Data.DB.pas
Data.DB.hpp
Data.DB TBooleanField

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