Page 1 of 1

horizontal line

Posted: Fri Oct 18, 2019 10:10 pm
by adamrich
Hello,
Is there a way to add horizontal line in RichViewEdit?

I tried to add table, and hide left, right and bottom border but not working for me. I'm sure I'm doing something wrong.

var
table1: TRVTableItemInfo;
begin

table1 := TRVTableItemInfo.CreateEx(1,1, RichViewEdit1.RVData);
table1.BorderWidth := 2;

table1.SetCellVisibleBorders(False, True, False, False, 0,0);
RichViewEdit1.AddItem('x', table1);
RichViewEdit1.Format

Thank you

Re: horizontal line

Posted: Sat Oct 19, 2019 12:08 am
by giovani.erthal
Hello, maybe this is what you are looking for:

https://www.trichview.com/help/idio_breaks.html

Re: horizontal line

Posted: Sat Oct 19, 2019 12:45 pm
by adamrich
Thank you so much