DesignEditors.TPropertyEditor.Value
Delphi
property Value: string read GetValue write SetValue;
C++
__property System::UnicodeString Value = {read=GetValue, write=SetValue};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | DesignEditors.pas DesignEditors.hpp |
DesignEditors | TPropertyEditor |
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.