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
border and invoke image properties with a double click
-
- Posts: 184
- Joined: Wed Jan 18, 2012 6:22 pm
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
1)
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.
Code: Select all
procedure TForm3.SRichViewEdit1DblClick(Sender: TObject);
begin
if srvActionsResource.rvActionItemProperties1.Enabled then
srvActionsResource.rvActionItemProperties1.ExecuteTarget((Sender as TSRichViewEdit).ActiveEditor);
end;