Data.DB.TFloatField.Value

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Value: Double read GetAsFloat write SetAsFloat;

C++

__property double Value = {read=GetAsFloat, write=SetAsFloat};

Properties

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

Description

Specifies the value of the floating-point field.

Use Value to read data from and write data to a floating-point component at runtime. Using the Value property is the same as using the AsFloat property. Use Value when you know the field component is a floating-point field. Use AsFloat when working with a generic field component.

See Also