I believe a developer might need this feature. It is difficult to imagine how vital a feature like this could be for a developer when delving deep into TRichView code. Anyway, this was a simple task that I corrected in the original code to meet my needs.
Thank you again for your wonderful software ...
Search found 32 matches
- Thu Jan 09, 2025 7:10 pm
- Forum: Support
- Topic: Assistance Needed with Saving and Reloading Items in TRichViewEdit
- Replies: 4
- Views: 1541
- Tue Jan 07, 2025 4:33 pm
- Forum: Support
- Topic: Assistance Needed with Saving and Reloading Items in TRichViewEdit
- Replies: 4
- Views: 1541
Re: Assistance Needed with Saving and Reloading Items in TRichViewEdit
Thank you for your anseer.
I noticed a small issue with the AssignToStrings method in TRVStyleTemplateCollection. When AssignIds=True, the IDs are assigned to the Objects property but are not reflected in the Name. This can make it less clear when displaying the templates in a combo box or list ...
I noticed a small issue with the AssignToStrings method in TRVStyleTemplateCollection. When AssignIds=True, the IDs are assigned to the Objects property but are not reflected in the Name. This can make it less clear when displaying the templates in a combo box or list ...
- Mon Jan 06, 2025 3:27 pm
- Forum: Support
- Topic: Assistance Needed with Saving and Reloading Items in TRichViewEdit
- Replies: 4
- Views: 1541
Assistance Needed with Saving and Reloading Items in TRichViewEdit
Hello Sergey,
I’ve been working with TRichView for a few weeks on an issue related to saving and reloading items efficiently. Despite valuable assistance from “Vector” (the name of my ChatGPT assistant), who extensively analyzed the help files and documentation, I am still struggling with the ...
I’ve been working with TRichView for a few weeks on an issue related to saving and reloading items efficiently. Despite valuable assistance from “Vector” (the name of my ChatGPT assistant), who extensively analyzed the help files and documentation, I am still struggling with the ...
- Mon Jul 22, 2024 5:41 pm
- Forum: Support
- Topic: How to Get a transparent BitMap from TRVMathItemInfo item?
- Replies: 1
- Views: 19579
Re: How to Get a transparent BitMap from TRVMathItemInfo item?
Ok I found the problem... I should set the transparent property of timage to true...
- Mon Jul 22, 2024 5:28 pm
- Forum: Support
- Topic: How to Get a transparent BitMap from TRVMathItemInfo item?
- Replies: 1
- Views: 19579
How to Get a transparent BitMap from TRVMathItemInfo item?
Hello Sergey
I used the following code to convert a latex text into a bitmap...
Every thing runs well except that the Bitmap produced is not transparent as I wish...
Please what I mess here?? Thanks in advance!!
procedure TForm9.Button1Click(Sender: TObject);
var rv:trichViewEdit;
Item ...
I used the following code to convert a latex text into a bitmap...
Every thing runs well except that the Bitmap produced is not transparent as I wish...
Please what I mess here?? Thanks in advance!!
procedure TForm9.Button1Click(Sender: TObject);
var rv:trichViewEdit;
Item ...
- Wed May 29, 2024 12:34 pm
- Forum: Support
- Topic: How controlig by code the edited text in a cell of a table
- Replies: 1
- Views: 22677
How controlig by code the edited text in a cell of a table
Hello Sergey
I need to have some control on an edited text in a Table1.cells[0,0] wich resides in SRichViewEdit Component.
1. How centering the editing text inside the Cell[0,0]?
2. control size of the used font or color?
I hope that you can help me in that as usual
thank you in advance
I need to have some control on an edited text in a Table1.cells[0,0] wich resides in SRichViewEdit Component.
1. How centering the editing text inside the Cell[0,0]?
2. control size of the used font or color?
I hope that you can help me in that as usual
thank you in advance
- Sun Mar 31, 2024 8:53 pm
- Forum: Support
- Topic: Math Support
- Replies: 2
- Views: 17888
Re: Math Support
Excellent> Thank you very much
- Fri Mar 29, 2024 10:55 pm
- Forum: Support
- Topic: Math Support
- Replies: 2
- Views: 17888
Math Support
Hello Expert
I have TRichView version v12.0.2 installed on my computer. My question is:
How can I convert the RVMathItem expression to a bitmap using delphi?
Thank you in advance!
I have TRichView version v12.0.2 installed on my computer. My question is:
How can I convert the RVMathItem expression to a bitmap using delphi?
Thank you in advance!
- Fri Sep 15, 2023 2:35 pm
- Forum: Support
- Topic: Moving SclRvRuler1.BottomMargin by code
- Replies: 7
- Views: 32333
Re: Moving SclRvRuler1.BottomMargin by code
Thank you. I will do that.
you are as always very brilliant...
you are as always very brilliant...
- Thu Sep 14, 2023 7:48 pm
- Forum: Support
- Topic: Moving SclRvRuler1.BottomMargin by code
- Replies: 7
- Views: 32333
Re: Moving SclRvRuler1.BottomMargin by code
Hello Sergey
I Got some help from samples in the demo and could write what I want
it's ok. I found the soluttion...
PageNo:=1;
PageRect:=Rich.GetPageClientRect(PageNo);
Rich.GetPageLastItemNo(PageNo,LastItemNo, Offs);
ItemPart := 0;
ItemRect := Bounds(0, 0, 0, 0);
while Rich ...
I Got some help from samples in the demo and could write what I want
it's ok. I found the soluttion...
PageNo:=1;
PageRect:=Rich.GetPageClientRect(PageNo);
Rich.GetPageLastItemNo(PageNo,LastItemNo, Offs);
ItemPart := 0;
ItemRect := Bounds(0, 0, 0, 0);
while Rich ...
- Thu Sep 14, 2023 1:41 pm
- Forum: Support
- Topic: Moving SclRvRuler1.BottomMargin by code
- Replies: 7
- Views: 32333
Re: Moving SclRvRuler1.BottomMargin by code
Pixels...
when I execute the Line SclRvRuler1.BottomMargin:=SclRvRuler1.BottomMargin+1; the BottomMargin jump one pixel upword.
I need to know how many pixels there are between points A and B...
I could retrieve the itemRect of the last item(table), then it seems that I should deal with ...
when I execute the Line SclRvRuler1.BottomMargin:=SclRvRuler1.BottomMargin+1; the BottomMargin jump one pixel upword.
I need to know how many pixels there are between points A and B...
I could retrieve the itemRect of the last item(table), then it seems that I should deal with ...
- Thu Sep 14, 2023 12:00 pm
- Forum: Support
- Topic: Moving SclRvRuler1.BottomMargin by code
- Replies: 7
- Views: 32333
Re: Moving SclRvRuler1.BottomMargin by code
Thank you for your reply.
It seems I have difficulties to present my problem!
In the Line code you suggested,
SRichViewEdit.SetFloatPropertyEd(srvfpPPBottomMargin, NewMarginValue, True);
I need to calculate NewMarginValue so the BottomMargin(Presented By the Letter 'A' in the ScreenShut I sent ...
It seems I have difficulties to present my problem!
In the Line code you suggested,
SRichViewEdit.SetFloatPropertyEd(srvfpPPBottomMargin, NewMarginValue, True);
I need to calculate NewMarginValue so the BottomMargin(Presented By the Letter 'A' in the ScreenShut I sent ...
- Wed Sep 13, 2023 6:18 pm
- Forum: Support
- Topic: Moving SclRvRuler1.BottomMargin by code
- Replies: 7
- Views: 32333
Moving SclRvRuler1.BottomMargin by code
Hello Sergey, Hello active customers,
I must be able to move the SclRvRuler1 from point A to point B by code! . The document contains a single Page.
The point B should be at the Bottom of the last item in the SRichViewEdit1 page, in this case a table1.
By the following line :
SclRvRuler1 ...
I must be able to move the SclRvRuler1 from point A to point B by code! . The document contains a single Page.
The point B should be at the Bottom of the last item in the SRichViewEdit1 page, in this case a table1.
By the following line :
SclRvRuler1 ...
- Sat Sep 09, 2023 12:29 pm
- Forum: Support
- Topic: Insert a bitmap in a table cell
- Replies: 3
- Views: 23788
Re: Insert a bitmap in a table cell
Thank you very much for tghe immediate response
- Sat Sep 09, 2023 10:37 am
- Forum: Support
- Topic: Insert a bitmap in a table cell
- Replies: 3
- Views: 23788
Insert a bitmap in a table cell
Hello sergey
When I insert a bitmap in a table cell. I try to free the bitmap when done, but An exception in arised Why???
Please Help!!!
procedure TFScienceStudio.InsertBitmap1Click(Sender: TObject);
var Table:TrvTableItemInfo;
BitMap:TBitmap;
Row,Col:Integer;
begin
Table:=GetTable(Rich ...
When I insert a bitmap in a table cell. I try to free the bitmap when done, but An exception in arised Why???
Please Help!!!
procedure TFScienceStudio.InsertBitmap1Click(Sender: TObject);
var Table:TrvTableItemInfo;
BitMap:TBitmap;
Row,Col:Integer;
begin
Table:=GetTable(Rich ...