Search found 286 matches

by jgkoehn
Thu Oct 20, 2022 6:02 pm
Forum: Support
Topic: RVGetSelection returns a different length if after a bullet
Replies: 6
Views: 4560

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: 3843

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: 3843

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: 3297

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: 3843

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: 3282

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: 3282

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: 3297

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: 16287

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: 3359

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.
by jgkoehn
Wed Jun 22, 2022 1:46 pm
Forum: Support
Topic: RichViewEdit.SearchText(textstr, [rvseoMultiItem, rvseoDown]) -- not ignoring footnote number
Replies: 4
Views: 3359

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

Greetings Sergey,
I see what you mean and I have flagged the user to warn them they are selecting text including a footnote. Perhaps an option to ignore items like a footnote, picture when searching? Much like it does when you do GetSelText.
What do you think?
by jgkoehn
Tue Jun 21, 2022 6:49 pm
Forum: Support
Topic: RichViewEdit.SearchText(textstr, [rvseoMultiItem, rvseoDown]) -- not ignoring footnote number
Replies: 4
Views: 3359

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

I am using RichViewEdit.SearchText(textstr, [rvseoMultiItem, rvseoDown]) To search for a string such as. an indeclinable title (2:13), a quotation (1:5; 17:5), or simply as imitating the LXX usage (1:5; 17:4). It seems that he used this to emphasize the word in the nominative, for his audience would...
by jgkoehn
Thu Jun 16, 2022 5:42 pm
Forum: Support
Topic: InsertText fastest way?
Replies: 6
Views: 2987

Re: InsertText fastest way?

Thank you Sergey for giving me some pointers. I see what you mean it is quite complex. It does give me some things to think about.
by jgkoehn
Wed Jun 15, 2022 11:28 pm
Forum: Support
Topic: InsertText fastest way?
Replies: 6
Views: 2987

Re: InsertText fastest way?

Here is an idea of the code I am using. It is a code that is based in Regex you helped me with. With some modifications. The modifications being that at every regex match it stops gets the position in the string of characters. Now matches the alignment in the RichViewEdit you helped me with that. Th...
by jgkoehn
Wed Jun 15, 2022 11:18 pm
Forum: Support
Topic: InsertText fastest way?
Replies: 6
Views: 2987

Re: InsertText fastest way?

I see there is Add, AddNL but I need it to add right where the caret position is at or in a linear position in the text. Ideas?