Data.DB.TLargeintField.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: TLargeintField

Delphi

property Value: Largeint read GetAsLargeint write SetAsLargeint;

C++

__property Largeint Value = {read=GetAsLargeInt, write=SetAsLargeInt};

Description

Represents the value of the large integer field.

Use Value to read data directly from and write data directly to a large integer field. Using the Value property is the same as using the AsLargeInt property.

If a value assigned to the field is not within the range established by the MinValue and the MaxValue properties, an EDatabaseError exception is raised.

See Also