Data.Bind.Components.RegisterValuePropertyName

From RAD Studio API Documentation

[–] Properties
Type:
procedure
function
Visibility: public
Source:
Data.Bind.Components.pas
Data.Bind.Components.hpp
Unit: Data.Bind.Components
Parent: Data.Bind.Components

Delphi

procedure RegisterValuePropertyName(AClasses: TArray<TClass>; const APropertyName: string; const AFrameWorkExt: string);

C++

extern DELPHI_PACKAGE void __fastcall RegisterValuePropertyName(System::DynamicArray<System::TClass> AClasses, const System::UnicodeString APropertyName, const System::UnicodeString AFrameWorkExt)/* overload */;

Description

Registers the property that is the value of a control.

The RegisterValuePropertyName method registers the property that is the value of a control. For instance, Text is the value property of a TEdit control. There are three RegisterValuePropertyName overloaded methods, each one accepting different parameters.

The AClass or AClasses parameter specifies the expression class or array of classes.

The APropertyName parameter specifies the name of the control's property.

The AFrameWorkExt parameter is a string that specifies the framework.

The AOptions parameter is of type TValuePropertyOptions and contains options for the property (observable,trackable, and so on).

See Also