DesignEditors.TPropertyEditor.GetVarValue

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: protected
Source:
DesignEditors.pas
DesignEditors.hpp
Unit: DesignEditors
Parent: TPropertyEditor

Delphi

function GetVarValue: Variant;

C++

System::Variant __fastcall GetVarValue();

Description

Returns the property value of the first object currently being edited.

Call GetVarValue to obtain the current value of the property for the first object in the internal list of objects being edited. Call GetVarValue only if the property value can be represented by a variant.

If more than one object is currently being edited, GetVarValue returns the value for the object returned by GetComponent(0); To obtain the current property value for every object currently being edited, use the GetVarValueAt method.

See Also