Insert text at the beginning of a TRichView
Posted: Sun Sep 22, 2019 12:23 pm
Please tell me how to insert text at the beginning of a TRichView
Support forums for TRichView, ScaleRichView, Report Workshop and RVMedia components
https://richedit.com/forums/
Code: Select all
procedure RVInsertString(RVData: TCustomRVData; ItemNo: Integer;
const s: String; StyleNo, ParaNo: Integer; const Tag: TRVTag = RVEMPTYTAG);
Code: Select all
RVInsertString(RichView1.RVData, 0, 'Hello world!', 0, 0);
RichView1.Format;
Code: Select all
procedure RVInsertGraphic(RVData: TCustomRVData; ItemNo: Integer;
Graphic: TGraphic; Hyperlink: Boolean; ParaNo: Integer;
VAlign: TRVVAlign = rvvaBaseline; const Tag: TRVTag = RVEMPTYTAG);