System.WideStrings.TWideStringList.PutObject

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure PutObject(Index: Integer; AObject: TObject); override;

C++

virtual void __fastcall PutObject(int Index, System::TObject* AObject);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.WideStrings.pas
System.WideStrings.hpp
System.WideStrings TWideStringList

Description

Changes the object associated with the string at a specified index.

System.WideStrings.TWideStringList.PutObject inherits from System.WideStrings.TWideStrings.PutObject. All content below this line refers to System.WideStrings.TWideStrings.PutObject.

Changes the object associated with the string at a specified index.

PutObject is the protected write implementation of the Objects property.

As implemented in TWideStrings, PutObject does nothing. This provides a default implementation for descendants that do not support associating objects with the strings in the list. Descendants that support this feature override PutObject to change the specified object.

See Also