Search found 29 matches

by fara2000
Mon Jul 22, 2024 5:41 pm
Forum: Support
Topic: How to Get a transparent BitMap from TRVMathItemInfo item?
Replies: 1
Views: 7803

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...
by fara2000
Mon Jul 22, 2024 5:28 pm
Forum: Support
Topic: How to Get a transparent BitMap from TRVMathItemInfo item?
Replies: 1
Views: 7803

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 ...
by fara2000
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: 10668

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
by fara2000
Sun Mar 31, 2024 8:53 pm
Forum: Support
Topic: Math Support
Replies: 2
Views: 14071

Re: Math Support

Excellent> Thank you very much
by fara2000
Fri Mar 29, 2024 10:55 pm
Forum: Support
Topic: Math Support
Replies: 2
Views: 14071

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!
by fara2000
Fri Sep 15, 2023 2:35 pm
Forum: Support
Topic: Moving SclRvRuler1.BottomMargin by code
Replies: 7
Views: 28581

Re: Moving SclRvRuler1.BottomMargin by code

Thank you. I will do that.
you are as always very brilliant...
by fara2000
Thu Sep 14, 2023 7:48 pm
Forum: Support
Topic: Moving SclRvRuler1.BottomMargin by code
Replies: 7
Views: 28581

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.GetItemBounds100(Rich ...
by fara2000
Thu Sep 14, 2023 1:41 pm
Forum: Support
Topic: Moving SclRvRuler1.BottomMargin by code
Replies: 7
Views: 28581

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 ...
by fara2000
Thu Sep 14, 2023 12:00 pm
Forum: Support
Topic: Moving SclRvRuler1.BottomMargin by code
Replies: 7
Views: 28581

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) will ...
by fara2000
Wed Sep 13, 2023 6:18 pm
Forum: Support
Topic: Moving SclRvRuler1.BottomMargin by code
Replies: 7
Views: 28581

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 ...
by fara2000
Sat Sep 09, 2023 12:29 pm
Forum: Support
Topic: Insert a bitmap in a table cell
Replies: 3
Views: 21167

Re: Insert a bitmap in a table cell

Thank you very much for tghe immediate response
by fara2000
Sat Sep 09, 2023 10:37 am
Forum: Support
Topic: Insert a bitmap in a table cell
Replies: 3
Views: 21167

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 ...
by fara2000
Wed Jun 28, 2023 10:34 am
Forum: Support
Topic: Table.Cells[j,i].AddNL
Replies: 9
Views: 33871

Re: Table.Cells[j,i].AddNL

Hello I attached a screenshot to explain my self. As you can see, the last Line of the table(in SRichViewedit document) jumped to a new page. I don't want this to happen! I could solve this problem by dragging down the sclruler at the left side, however What I really need is to do it by code so the ...
by fara2000
Mon Jun 26, 2023 2:04 pm
Forum: Support
Topic: Table.Cells[j,i].AddNL
Replies: 9
Views: 33871

Re: Table.Cells[j,i].AddNL

Please I still have a problem with my second question. As a matter of fact I need to read the Bottom Coordination of the document not including empty area. Which Means I need to read the Bottom Coordination of the last Item in the document!!!! It seems that Rich.RichViewEdit.DocumentHeight gives the ...
by fara2000
Mon Jun 26, 2023 1:19 pm
Forum: Support
Topic: Table.Cells[j,i].AddNL
Replies: 9
Views: 33871

Re: Table.Cells[j,i].AddNL

It works!!!
Than you. You are wonderful as always :D