Search found 22 matches
- Wed Jun 21, 2017 2:05 pm
- Forum: Support
- Topic: ScaleRichViewEdit - line spacing are changed after tab
- Replies: 6
- Views: 26366
Re: ScaleRichViewEdit - line spacing are changed after tab
Thank you, I'm glad it is solvable.
- Wed Jun 21, 2017 1:02 pm
- Forum: Support
- Topic: ScaleRichViewEdit - different gaps between characters
- Replies: 2
- Views: 14155
Re: ScaleRichViewEdit - different gaps between characters
OK, thanks for your explanation.
- Wed Jun 21, 2017 7:43 am
- Forum: Support
- Topic: ScaleRichViewEdit - line spacing are changed after tab
- Replies: 6
- Views: 26366
ScaleRichViewEdit - line spacing are changed after tab
Hi Sergey,
can I somehow fix a behavior when spaces between lines are changing after tab key is pressed? (Only first tab on the line).
Please see example below. It has been recorded on ActionTestUni demo.
Thank you for your answer.
can I somehow fix a behavior when spaces between lines are changing after tab key is pressed? (Only first tab on the line).
Please see example below. It has been recorded on ActionTestUni demo.
Thank you for your answer.
- Wed Jun 21, 2017 6:18 am
- Forum: Support
- Topic: ScaleRichViewEdit - different gaps between characters
- Replies: 2
- Views: 14155
ScaleRichViewEdit - different gaps between characters
Hi Sergey, we have found some visual issues during our internal testing of TSRichViewEdit. Maybe there is some property for setting that, but the same behavior we can reproduce on demo example (ActionTest demo). Please look below, there is TRichViewEdit on the left (OK) and TSRichViewEdit on the ...
- Tue Jun 20, 2017 7:52 pm
- Forum: Examples, Demos
- Topic: [Example] DeleteBlankLines, RemoveParagraphBreaks, etc.
- Replies: 21
- Views: 276735
Re: [Example] DeleteBlankLines, RemoveParagraphBreaks, etc.
Solved, thank you!
- Tue Jun 20, 2017 6:12 pm
- Forum: Examples, Demos
- Topic: [Example] DeleteBlankLines, RemoveParagraphBreaks, etc.
- Replies: 21
- Views: 276735
Re:
Modification of DeleteBlankLines - removing blank lines only from the end of the document: procedure DeleteTrailingBlankLines(RVData: TCustomRVData); var i: Integer; begin for i := RVData.ItemCount-1 downto 1 do if RVData.IsParaStart(i) and (RVData.GetItemStyle(i)>=0) and (RVData.GetItemText(i ...
- Tue May 23, 2017 10:57 am
- Forum: Support
- Topic: Protected section not set automatically on RTF file loading
- Replies: 29
- Views: 88506
Re: Protected section not set automatically on RTF file loading
OK, understand, thank you.
- Wed May 17, 2017 8:41 pm
- Forum: Support
- Topic: Protected section not set automatically on RTF file loading
- Replies: 29
- Views: 88506
Re: Protected section not set automatically on RTF file loading
Sergey, thank you very much, my "custom" jumps have needed some small changes, but together with your code work perfectly just as I want. I have also tried CanDelete inside of OnChanging event, it works too, but I'm a little bit confused about behavior. Due to lack of source code I can't check a ...
- Mon May 15, 2017 9:00 am
- Forum: Support
- Topic: Protected section not set automatically on RTF file loading
- Replies: 29
- Views: 88506
Re: Protected section not set automatically on RTF file loading
Sergey, is this information still valid? In TRichView, there are no end-of-line characters . There is only a flag "this item starts a new line/paragraph". I'm asking because of your methods GoToNextItemEx, GoToPrevItemEx for jumping after the protected text. May I suggest a little improvement? If ...
- Sun May 14, 2017 8:05 pm
- Forum: Support
- Topic: Protected section not set automatically on RTF file loading
- Replies: 29
- Views: 88506
Re: Protected section not set automatically on RTF file loading
Sergey, thanks to your latest three posts I'm convinced that my request I need to know if character just before and just after the caret is protected. is on a too low level and unnecessary. I see I can use the TCustomRichViewEdit.OnChanging (CanEdit variable) for refusing any user's action. Can I ...
- Fri May 12, 2017 9:37 am
- Forum: Support
- Topic: Protected section not set automatically on RTF file loading
- Replies: 29
- Views: 88506
Re: Protected section not set automatically on RTF file loading
The common font RV actions (bold, italic, strike, ..) reacts to protected as I expect and want, but unfortunately I'm still able to change protected text with changing of style (with TRVStyleTemplateComboBox) or with paragraph actions (ParaBullets, ParaNumbering, ParaList ...). Maybe there are even ...
- Thu May 11, 2017 8:17 pm
- Forum: Support
- Topic: TRVStyleTemplateComboBox is empty
- Replies: 2
- Views: 13433
Re: TRVStyleTemplateComboBox is empty
Understand, it works now.
I thought that if editor is showed as empty, it is already in "new" state. My fault.
Thank you.
I thought that if editor is showed as empty, it is already in "new" state. My fault.
Thank you.
- Thu May 11, 2017 8:08 pm
- Forum: Support
- Topic: Protected section not set automatically on RTF file loading
- Replies: 29
- Views: 88506
Re: Protected section not set automatically on RTF file loading
Hi Sergey,
i have already tried your methods in my demo and all of them works like a charm.
Thank you!
i have already tried your methods in my demo and all of them works like a charm.
Thank you!
- Thu May 11, 2017 7:39 pm
- Forum: Support
- Topic: TRVStyleTemplateComboBox is empty
- Replies: 2
- Views: 13433
TRVStyleTemplateComboBox is empty
Hi Sergey, I'm trying to use TRVStyleTemplateComboBox but it is empty - no styles. from help: The components require Editor.UseStyleTemplates=True, otherwise their Items are empty. The components work automatically: place them on a form, assign Editor property;no additional code is required I have ...
- Wed May 10, 2017 11:13 am
- Forum: Support
- Topic: Protected section not set automatically on RTF file loading
- Replies: 29
- Views: 88506
Re: Protected section not set automatically on RTF file loading
At first, thank you for your explanation above. We are using of quite deeply customized Delphi's TRTFEdit along with our own toolbar (font, bullets, aligning). My task is to find out a suitable rich text editor which has a zooming capabilities and cover all of our needs. It will be a long way but ...