Data.DB.TBCDField.MinValue

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: published
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: TBCDField

Delphi

property MinValue: Currency read FMinValue write SetMinValue;

C++

__property System::Currency MinValue = {read=FMinValue, write=SetMinValue};

Description

Limits the minimum value in the binary-coded decimal field.

Use MinValue to get or set the minimum value that can be entered into the field. If a value smaller than MinValue is entered, TBCDField raises an EDatabaseError exception.

Newly created integer fields set MinValue to the minimum value that can be expressed by the currency data type.

See Also