DesignEditors.TPropertyEditor.Value

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
DesignEditors.pas
DesignEditors.hpp
Unit: DesignEditors
Parent: TPropertyEditor

Delphi

property Value: string read GetValue write SetValue;

C++

__property System::UnicodeString Value = {read=GetValue, write=SetValue};

Description

Represents the current value of the property (as returned by GetValue) as a string.

Read Value to determine the current property setting as it is displayed in the Object Inspector. Set Value to apply a value to all selected components for which the property is appropriate.

The Value property is implemented using the GetValue and SetValue methods. Descendants of TPropertyEditor must override these methods to implement the Value property.

See Also