System.Classes.IStringsAdapter.ReferenceStrings

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure ReferenceStrings(S: TStrings);

C++

virtual void __fastcall ReferenceStrings(TStrings* S) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.Classes.pas
System.Classes.hpp
System.Classes IStringsAdapter

Description

Creates the link between the StringsAdapter and TStrings.

The ReferenceStrings implemented method links a TStrings instance to a TStringsAdapter instance. The method is used when a StringsAdapter is created.

The S parameter is the TStrings to which the TStringsAdapter links.

To unlink the TStrings instance from the TStringsAdapter instance use ReleaseStrings.

See Also