DesignEditors.TPropertyEditor.GetVarValueAt

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetVarValueAt(Index: Integer): Variant;

C++

System::Variant __fastcall GetVarValueAt(int Index);

Properties

Type Visibility Source Unit Parent
function protected
DesignEditors.pas
DesignEditors.hpp
DesignEditors TPropertyEditor

Description

Returns the property value of the specified object.

Call GetVarValueAt to obtain the current value of the property for an object in the internal list of objects being edited. Call GetVarValueAt only if the property value can be represented as a variant. The Index parameter identifies which object's value should be returned. It corresponds to the Index parameter of the GetComponent method.

Use GetVarValueAt to iterate over all current values, for example when implementing the AllEqual method.

See Also