Version 1.5

  Label Item - item class for RichView.
  Non-text item that looks like a text (but cannot be wrapped and edited)
  Does not support Unicode.

Main properties:
Text: String - text to display (standard item text is not used, as in all non-text items)
TextStyleNo: Integer - text style (index in the collection TextStyles of TRVStyle)
  (do not confuse with StyleNo - StyleNo must be equal to rvsLabel for this item)
ProtectTextStyleNo: Boolean - if set to True, ApplyTextStyle and ApplyStyleConversion do not change TextStyleNo.

Constructor:
constructor CreateEx(RVData: TPersistent; TextStyleNo: Integer; const Text: String);

How to use:

uses LabelItem;

...

var li: TRVLabelItemInfo;
begin
  li:= TRVLabelItemInfo.CreateEx(RichViewEdit1.RVData, 0, 'label text');
  RichViewEdit1.InsertItem('', li);
end;

