Data.DB.TIntegerField.Value

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Value: Integer read GetAsInteger write SetAsInteger;

C++

__property int Value = {read=GetAsInteger, write=SetAsInteger, nodefault};

Properties

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

Description

Represents the value of the integer field.

Use Value to read data directly from and write data directly to an integer field. Using the Value property is the same as using the AsInteger property. Use Value when you know the field component is a 32-bit integer field. Use AsInteger when working with a generic field component.

See Also