TParaInfo.Assign

<< Click to display table of contents >>

TParaInfo.Assign

Copies the contents of Source to this paragraph style.

procedure Assign(Source: TPersistent); override

Call Assign to copy properties of TCustomRVInfo, TCustomRVParaInfo, or TParaInfo to this paragraph style.

Example:

// Copying paragraph style to paragraph style:

MyRVStyle.ParaStyles[0].Assign(MyRVStyle.ParaStyles[1]);

// or, the same:

MyRVStyle.ParaStyles[0] := MyRVStyle.ParaStyles[1];