Data.Bind.Components.RegisterValuePropertyName

From RAD Studio API Documentation
Jump to: navigation, search

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 */;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Data.Bind.Components.pas
Data.Bind.Components.hpp
Data.Bind.Components Data.Bind.Components

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