I whant write descendant to TRichViewEdit and override several methods. And futher I'm going to substitute standart TRichViewEdit by it in TSRichViewEdit.
Can I use ExternalRV property for this purpose?
I can't understand how exactly use it. Wich properties of external RVE I should set?
Example
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
var
ExRVE: TRichViewEdit;
begin
ExRVE := TMyRichViewEdit.Create(Self);
ExRVE.Style := RVS;
SRVE.ExternalRV := ExRVE;
end;
Thank you!