Hi,
I want to create a 1 pixel boarder with a table. Before the last update from the TDBRichViewEdit it works with your help here: http://www.trichview.com/help/index.htm ... ables.html
But after the update to 14.11.3 it doesn't work. The boarder betweens the rows are always 2 pixel.
Can you help me?
Thank you.
Table - 1 pixel border
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Ok, here are the code:
var table : TRVTableItemInfo;
begin
Table := TRVTableItemInfo.CreateEx (StrToInt(eRow.Text),StrToInt(eCol.Text),TDBRichviewEdit.RVData);
with table do
begin
Table.Options := table.Options - [rvtoRowSizing, rvtoColSizing];
CellBorderWidth := 1;
CellHSpacing := -1;
CellVSpacing := -1;
end;
TDBRichviewEdit.InsertItem('', table);
var table : TRVTableItemInfo;
begin
Table := TRVTableItemInfo.CreateEx (StrToInt(eRow.Text),StrToInt(eCol.Text),TDBRichviewEdit.RVData);
with table do
begin
Table.Options := table.Options - [rvtoRowSizing, rvtoColSizing];
CellBorderWidth := 1;
CellHSpacing := -1;
CellVSpacing := -1;
end;
TDBRichviewEdit.InsertItem('', table);
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact: