Hello,
is it possible to add additional attributes to the img-tag?
I need to set an id (<IMG id="blabla" ....>)
Best regards
Testo
Save Image - Add Attributes (ID)
-
- Site Admin
- Posts: 17749
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Save Image - Add Attributes (ID)
Do you have an example on how to replace the TRVGraphicItemInfo class with a custom one so that we can override its GetMoreImgAttributes method ?
-
- Site Admin
- Posts: 17749
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Re: Save Image - Add Attributes (ID)
In the current version, you cannot replace classes used to represent image items. They are always TRVGraphicItemInfo and TRVGraphicHotItemInfo. You can only create your own classes based on these classes, override some methods, assign new StyleNo values, and use them. If you do everything correctly, you will be able to save and load items of your classes from RVF (and of course, save to other formats). However, when images are inserted from RTF, DocX, HTML or Clipboard, or from a file using RichViewActions, they still will be inserted as TRVGraphicItemInfo or TRVGraphicHotItemInfo.
In the next update, there will be a way to replace classes used to represent image items. Of course, these new classes must be inherited from TRVGraphicItemInfo. There will be a new RVItemFactory singleton object with properties GraphicItemClass: TRVGraphicItemInfoClass and HotGraphicItemClass: TRVGraphicItemInfoClass. If you assign your classes to these properties, your classes will be used everywhere for images.
In the next update, there will be a way to replace classes used to represent image items. Of course, these new classes must be inherited from TRVGraphicItemInfo. There will be a new RVItemFactory singleton object with properties GraphicItemClass: TRVGraphicItemInfoClass and HotGraphicItemClass: TRVGraphicItemInfoClass. If you assign your classes to these properties, your classes will be used everywhere for images.