TRVListInfos.AssignTo

<< Click to display table of contents >>

TRVListInfos.AssignTo

Copies properties of this collection to the destination object Dest.

procedure AssignTo(Dest: TPersistent); override; 

TCollection AssignTo method is overridden to make it possible to assign names of styles (TParaInfo.StyleName) to TStrings.

Do not call AssignTo directly, this method is called from Dest.Assign method.

Example:

MyListBox: TListBox;

...

MyListBox.Items.Assign(MyRVStyle.ListStyles);