Page 1 of 1

border and invoke image properties with a double click

Posted: Mon Apr 09, 2012 12:27 am
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

Posted: Mon Apr 09, 2012 5:57 pm
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.

Posted: Mon Apr 09, 2012 6:01 pm
by alexandreq
I will take a look at it.

thanks Sergey