border and invoke image properties with a double click

General TRichView support forum. Please post your questions here
Post Reply
alexandreq
Posts: 184
Joined: Wed Jan 18, 2012 6:22 pm

border and invoke image properties with a double click

Post by alexandreq »

Sergey,

Is it possible to give a double click in an image and open the Image properties? if so, how can I do this?

Is it also possible to have a border in my Image as html allows?

thanks
Alexandre
Sergey Tkachenko
Site Admin
Posts: 17557
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Post by Sergey Tkachenko »

1)

Code: Select all

procedure TForm3.SRichViewEdit1DblClick(Sender: TObject);
begin
  if srvActionsResource.rvActionItemProperties1.Enabled then
    srvActionsResource.rvActionItemProperties1.ExecuteTarget((Sender as TSRichViewEdit).ActiveEditor);
end;
2) Borders, background color, spacing around borders are implemented in TRichView 13.8, available for registered users. See the protected Announcement forum. Unfortunately, RichViewActions do not allow to define these properties yet - it will be implemented closer to the release of TRichView 14.
alexandreq
Posts: 184
Joined: Wed Jan 18, 2012 6:22 pm

Post by alexandreq »

I will take a look at it.

thanks Sergey
Post Reply