DesignEditors.TPropertyEditor.GetInt64ValueAt

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetInt64ValueAt(Index: Integer): Int64;

C++

__int64 __fastcall GetInt64ValueAt(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 GetInt64ValueAt to obtain the current value of the property for an object in the internal list of objects being edited. Call GetInt64ValueAt only if the property is a 64-bit integer type. The Index parameter identifies which object's value should be returned. It corresponds to the Index parameter of the GetComponent method.

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

See Also