Search found 16 matches
- Thu Sep 07, 2017 2:04 am
- Forum: Support
- Topic: RVF to PDF
- Replies: 1
- Views: 11927
RVF to PDF
I have read from TRichView website, there are 2 third party component listed, llPDFLib and GNostice. 1. May I know can both of them convert full content from RV to PDF? Inlcude image, header. footer, footnote etc 2. GNostice support from Delphi 2007 onwards, while I am using Delphi 2006 for my ...
- Thu Mar 09, 2017 11:15 am
- Forum: Support
- Topic: Custom Item Type, OnItemAction
- Replies: 4
- Views: 14626
Re: Custom Item Type, OnItemAction
Any idea?
- Mon Mar 06, 2017 8:44 am
- Forum: Support
- Topic: Custom Item Type, OnItemAction
- Replies: 4
- Views: 14626
Re: Custom Item Type, OnItemAction
1. I have try the following to protect my item text style, it seems working now. If rvprParaStartProtect is not added into protection, when I press Enter at end of the text item I have inserted, OnItemAction will trigger for an new empty text item with the same tag, but if rvprParaStartProtect is ...
- Tue Feb 28, 2017 12:16 pm
- Forum: Support
- Topic: Custom Item Type, OnItemAction
- Replies: 4
- Views: 14626
Custom Item Type, OnItemAction
According to this thread: http://www.trichview.com/forums/viewtopic.php?f=2&t=709&p=2644&hilit=itemaction#p2644 We were suggested to have a list to keep items and check item existence during OnItemAction. I need to keep a list of items as well. I have some special items with tags that I need to keep ...
- Tue Feb 28, 2017 11:29 am
- Forum: Support
- Topic: OnItemAction var Text
- Replies: 1
- Views: 8974
OnItemAction var Text
In OnItemAction(Sender: TCustomRichView; ItemAction: TRVItemAction; Item: TCustomRVItemInfo;
var Text: TRVRawByteString; RVData: TCustomRVData);
the Text is in var, but when ItemAction = rviaInserted, I tried to change the Text, but it does not seems updating the text to my new text.
var Text: TRVRawByteString; RVData: TCustomRVData);
the Text is in var, but when ItemAction = rviaInserted, I tried to change the Text, but it does not seems updating the text to my new text.
- Tue Feb 28, 2017 10:05 am
- Forum: Support
- Topic: How to setItemText for an Item
- Replies: 1
- Views: 8967
How to setItemText for an Item
I have a list to keep Text Items with special tag i have assigned to when calling AddNLTag. When I need to update the Item text, i will loop through my list and update item text one follow by another. I tried, rve.SetItemText(rve.GetItemNo(TextItem), 'updated text'), but items in table cell does not ...
- Mon Feb 27, 2017 12:02 pm
- Forum: Support
- Topic: How to get newly inserted item
- Replies: 1
- Views: 9232
How to get newly inserted item
Right after call AddNLTag() how can I get the correct ItemInfo? rve.GetCurrentItem?
Thanks
Thanks
- Tue Jan 03, 2017 2:16 am
- Forum: Support
- Topic: insert blank page
- Replies: 4
- Views: 15341
- Wed Dec 21, 2016 7:45 am
- Forum: Support
- Topic: insert blank page
- Replies: 4
- Views: 15341
- Tue Dec 20, 2016 9:56 am
- Forum: Support
- Topic: Table Context
- Replies: 5
- Views: 17662
- Tue Dec 20, 2016 4:27 am
- Forum: Support
- Topic: insert blank page
- Replies: 4
- Views: 15341
insert blank page
How can I insert blank page like MS Word feature?
Thanks
Thanks
- Fri Dec 16, 2016 3:45 am
- Forum: Support
- Topic: Table Context
- Replies: 5
- Views: 17662
- Thu Dec 15, 2016 11:57 am
- Forum: Support
- Topic: Table Context
- Replies: 5
- Views: 17662
Table Context
I have a Ribbon Context Tab for Table, whenever caret is in table, the Table Tab will be visible. I try these to check if caret in a table 1. Result := (rve.InplaceEditor <> nil); 2. Result := rve.GetCurrentItemEx(TRVTableItemInfo, rve, ItemInfo); 3. begin Result := rve.GetCurrentItemEx ...
- Fri Dec 02, 2016 9:34 am
- Forum: Support
- Topic: rvitem to be exported as image
- Replies: 3
- Views: 12857
I am going to have a feature to allow user to create table styles, after setting up the table styles, i am thinking to generate a thumbnail of the table style and it will be shown in the list box when choosing styles to apply to table. I am using the ToImage demo as example, but I am struggling to ...
- Thu Dec 01, 2016 4:49 pm
- Forum: Support
- Topic: rvitem to be exported as image
- Replies: 3
- Views: 12857
rvitem to be exported as image
Is there any way i can save the rvitem like TableItem into a image file?