Data.DB.TLargeintField.Value

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Value: Largeint read GetAsLargeint write SetAsLargeint;

C++

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

Properties

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

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