horizontal line

General TRichView support forum. Please post your questions here
Post Reply
adamrich
Posts: 35
Joined: Sun Feb 19, 2006 1:55 pm

horizontal line

Post 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
giovani.erthal
Posts: 9
Joined: Thu Dec 27, 2018 1:48 am

Re: horizontal line

Post by giovani.erthal »

Hello, maybe this is what you are looking for:

https://www.trichview.com/help/idio_breaks.html
adamrich
Posts: 35
Joined: Sun Feb 19, 2006 1:55 pm

Re: horizontal line

Post by adamrich »

Thank you so much
Post Reply