Search found 10 matches
- Sat Jun 06, 2020 11:21 am
- Forum: Support
- Topic: How to analyze document in ReportHelper
- Replies: 1
- Views: 7666
How to analyze document in ReportHelper
Hi; After loading document I need to analyze items of document. Tables, textstyles and parastyles etc. How to getting items information from RvReportHelper? After loading document ReportHelper with using ReportHelper.Richview.LoadRtf(filename) ReportHelper.Richview.items.count returns zero. Can any ...
- Fri Jun 05, 2020 11:00 am
- Forum: Support
- Topic: is possible usage of richviewEdit in windows service application
- Replies: 1
- Views: 7963
is possible usage of richviewEdit in windows service application
Hi;
is possible usage of richviewEdit in windows service application ?
can you give an example or some advice to make service application?
Thanks;
is possible usage of richviewEdit in windows service application ?
can you give an example or some advice to make service application?
Thanks;
- Sun May 24, 2020 12:33 pm
- Forum: Support
- Topic: how to fixed tab position
- Replies: 2
- Views: 10704
Re: how to fixed tab position
Sory for my bad English :( I want to make tab's position list. The list will only Default position of selectable tabs. eg 48 px, 72 px 120 px All of tabs position are limited only one position. if user selection is 48px , for left align paragraph a line tab's possible position is multiple * 48px, 48 ...
- Fri May 22, 2020 1:50 pm
- Forum: Support
- Topic: how to fixed tab position
- Replies: 2
- Views: 10704
how to fixed tab position
Hi;
I want to make an editor which has got, editor's user can set only one tab position eg 100 px whole active document.
I make a list of tab positon for selection for example (100 px, 50 px, 150 px).
If user change selection all of document tab position was changing?
Can you give me an idea ?
I want to make an editor which has got, editor's user can set only one tab position eg 100 px whole active document.
I make a list of tab positon for selection for example (100 px, 50 px, 150 px).
If user change selection all of document tab position was changing?
Can you give me an idea ?
- Tue May 19, 2020 7:55 pm
- Forum: Support
- Topic: Gettting Tab info
- Replies: 11
- Views: 29711
Re: Gettting Tab info
Thanks for your reply ;
I understand that why always paragraph.tabs.count return zero.
is the defaultTab.Position changing when after loading and formatting RTF document?
I understand that why always paragraph.tabs.count return zero.
is the defaultTab.Position changing when after loading and formatting RTF document?
- Tue May 19, 2020 5:01 pm
- Forum: Support
- Topic: Gettting Tab info
- Replies: 11
- Views: 29711
Re: Gettting Tab info
Hi Sergey; --> Information about which tab stop is used for the given tab character (TRVTabItemInfo item) is not stored in TRichView. Of course, you can get coordinates of this tab character and find the proper position, but it can be easily done only by left-aligned tabs in left-aligned paragraphs ...
- Mon May 18, 2020 1:59 pm
- Forum: Support
- Topic: Gettting Tab info
- Replies: 11
- Views: 29711
Re: Gettting Tab info
The custom format's editor is a page based. No window or editable area based. Editor main windows is 1024*800 display full page, when main window size is 1024*400 display 1/2 of full page. The custom format save tabs are chr(9). The paragraph properties has got a tabset properties which is possible ...
- Mon May 18, 2020 7:45 am
- Forum: Support
- Topic: Gettting Tab info
- Replies: 11
- Views: 29711
Re: Gettting Tab info
Hi; I try to converting RTF document to a specific file format. (File format is not standart).So I need collecting item's info and item's type from RVE. my codes is look likes var xitemstyle : integer; xrvdata : TcustomRvdata; xitemcount : integer; .. xrvdata:=RVE.Rvdata; for xitemcount:=0 to ...
- Sun May 17, 2020 4:49 pm
- Forum: Support
- Topic: Gettting Tab info
- Replies: 11
- Views: 29711
Re: Gettting Tab info
Thanks for your reply. I need an analyse of document items. After loading and formatting a document which is saved RTF format. I can take about information of texts (font, size, font syyle etc.) I can take about information of tables (cell, row,col, etc) If a default DefTabWidth is 50 (px) possible ...
- Sun May 17, 2020 3:24 pm
- Forum: Support
- Topic: Gettting Tab info
- Replies: 11
- Views: 29711
Gettting Tab info
hi; I need to getting tab information. (Tab's position of a paragraph) The document start look like this ... text.tab.tab.text.tab.tab.text.tab.text ... I tried to getting tab info using this code. var .. xitemno: TCustomRVItemInfo; xparano : integer; xtabinfo : TrvTabInfos ; .. begin .. xitemno ...