Search found 291 matches

by jgkoehn
Thu Nov 10, 2022 12:27 am
Forum: Support
Topic: How to know if the RichView is showing a scrollbar
Replies: 2
Views: 2746

How to know if the RichView is showing a scrollbar

Greetings,
Is there a way to test if the scrollbar is presently on? As in available and visible due to text.
I want to increase a richview.height by using richview.documentheight + scrollbar height.
by jgkoehn
Fri Oct 21, 2022 12:02 am
Forum: Support
Topic: RVGetSelection returns a different length if after a bullet
Replies: 6
Views: 4807

Re: RVGetSelection returns a different length if after a bullet

A good guess Stan, I did try that but oddly enough it is only connected to when there is a bullet point. If there is none it is fine.
by jgkoehn
Thu Oct 20, 2022 10:21 pm
Forum: Support
Topic: RVGetSelection returns a different length if after a bullet
Replies: 6
Views: 4807

Re: RVGetSelection returns a different length if after a bullet

Greetings Sergey, Sorry let me combine my posts and make it clearer. GCRVE := RichViewEdit.TopLevelEditor; //A user selects a portion of text right after a bullet point. RVGetSelection(GCRVE, LinearStarPos, LinearLen, 2);//Get the Selection in linear instead of Bounds. If VariableTrue then begin ms ...
by jgkoehn
Thu Oct 20, 2022 6:27 pm
Forum: Support
Topic: RVGetSelection returns a different length if after a bullet
Replies: 6
Views: 4807

Re: RVGetSelection returns a different length if after a bullet

Any ideas why moving the selection to stream then working with it in another RichViewEdit would change the length? (Specifically connected to bullet that hasn't been selected.) ms := TMemoryStream.Create; RVE.SaveRVFToStream(ms,True); ms.Position := 0; //Now switch to TempRVE TempRVE.LoadRVFFromStre...
by jgkoehn
Thu Oct 20, 2022 6:20 pm
Forum: Support
Topic: RVGetSelection returns a different length if after a bullet
Replies: 6
Views: 4807

Re: RVGetSelection returns a different length if after a bullet

Nevermind, it is something else in my code. I am digging more.
by jgkoehn
Thu Oct 20, 2022 6:02 pm
Forum: Support
Topic: RVGetSelection returns a different length if after a bullet
Replies: 6
Views: 4807

RVGetSelection returns a different length if after a bullet

Greetings I am using RVGetSelection(RichViewEdit, StartInt, LenInt, 2) I select after the bullet for example: 20:1-10 test No bullet: 20:1-10 test The first with a bullet on LenInt returns 13 The second with NO bullet on LenInt returns 12 Perhaps this is intentional but the bullet is not being selec...
by jgkoehn
Sat Oct 01, 2022 6:29 pm
Forum: Support
Topic: ListStyles Paragraph Information
Replies: 4
Views: 4191

Re: ListStyles Paragraph Information

Greetings Sergey, Thanks for the information. I am wrestling with getting individual lines of <li inside of <ol, <ul to have specific space before etc. I am using rvhtmlimport and I know this will be done away with. I am looking forward to your code. I basically came to a grinding halt because I hav...
by jgkoehn
Sat Oct 01, 2022 1:48 pm
Forum: Support
Topic: ListStyles Paragraph Information
Replies: 4
Views: 4191

Re: ListStyles Paragraph Information

Can this be used with Lists? There are times I need to be able to set space before, after, margins erc, left, right, center, justified, etc for lists.

https://trichview.com/help/idh_class_tc ... ainfo.html
by jgkoehn
Sat Oct 01, 2022 12:52 am
Forum: Support
Topic: Right FirstLine Indent
Replies: 2
Views: 3475

Re: Right FirstLine Indent

Ah excellent good to know
by jgkoehn
Sat Oct 01, 2022 12:51 am
Forum: Support
Topic: ListStyles Paragraph Information
Replies: 4
Views: 4191

ListStyles Paragraph Information

I am having trouble finding the ListStyles Paragraph information. Such as Indent, Margin etc.

Can someone point me in the right direction?
by jgkoehn
Fri Sep 30, 2022 12:06 am
Forum: Support
Topic: Internal CSS with rvhtmlimport
Replies: 3
Views: 3501

Re: Internal CSS with rvhtmlimport

Excellent, I look forward to it. Out of curiosity will it use a tag parser similar to rvhtmlimport? (I am just thinking ahead to using it for our needs.) Also will the footnote, endnotes of an html,xhtml, epub truly be turned into footnotes, endnotes or will they just be links? (We convert them in o...
by jgkoehn
Tue Sep 27, 2022 7:34 pm
Forum: Support
Topic: Internal CSS with rvhtmlimport
Replies: 3
Views: 3501

Internal CSS with rvhtmlimport

I am trying: <!DOCTYPE html> <html> <head> <style> h1 { color: blue; font-family: verdana; font-size: 300%; } p { color: red; font-family: courier; font-size: 160%; } </style> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html> And I don't get the color attributes, ...
by jgkoehn
Tue Sep 20, 2022 6:13 pm
Forum: Support
Topic: Right FirstLine Indent
Replies: 2
Views: 3475

Right FirstLine Indent

Greetings,
How does one go about making a Right justified paragraph have a right first line indent?
I see FirstLine for Left but I can't find anything for right.
by jgkoehn
Fri Sep 16, 2022 7:31 pm
Forum: Support
Topic: Font is not taken when inserting into RichEdits in HTML format
Replies: 7
Views: 16611

Re: Font is not taken when inserting into RichEdits in HTML format

Will the html importer work with external css? Also will it be a tag style < > importer? We are using the older version and need to update to accommodate the external css. (We have done a lot of internal modifications to the previous html importer to support some of our needs.) I added regex support...
by jgkoehn
Wed Jun 22, 2022 3:12 pm
Forum: Support
Topic: RichViewEdit.SearchText(textstr, [rvseoMultiItem, rvseoDown]) -- not ignoring footnote number
Replies: 4
Views: 3636

Re: RichViewEdit.SearchText(textstr, [rvseoMultiItem, rvseoDown]) -- not ignoring footnote number

Ah ok, that is good to know. I appreciate Trichview especially thank you for working with me so often sir and helping me out.