FMX.EditBox.TCustomEditBox

From RAD Studio API Documentation
Jump to: navigation, search

FMX.Edit.TCustomEditFMX.Controls.Presentation.TPresentedControlFMX.Controls.TStyledControlFMX.Controls.TControlFMX.Types.TFmxObjectSystem.Classes.TComponentSystem.Classes.TPersistentTCustomEditBox

Delphi

TCustomEditBox = class(TCustomEdit, IValueRange)

C++

class PASCALIMPLEMENTATION TCustomEditBox : public Fmx::Edit::TCustomEdit

Properties

Type Visibility Source Unit Parent
class public
FMX.EditBox.pas
FMX.EditBox.hpp
FMX.EditBox FMX.EditBox

Description

Base class for all edit boxes that manipulate only numerical values.

TCustomEditBox is the base class for all edit boxes that manipulate only numerical values, such as a TNumberBox. TCustomEditBox implements functionality to set the minimum and maximum value that this edit box can display, and also the possibility to specify the number of decimal digits of the displayed value.

If you want to create your own custom edit box control that manipulates number data, then you should derive from TCustomEditBox.

See Also