Search found 5 matches
- Mon Feb 12, 2007 1:08 am
- Forum: Support
- Topic: Set table line style to dotted line
- Replies: 3
- Views: 13781
Ok, I'm trying the OnDrawBorder event as u said. I'm not sure what I did wrong, but it doesn't seem to call the OnDrawBorder event. Here's my code snippet. procedure TForm1.Button2Click(Sender: TObject); var l_Status, l_Pos : Integer; l_WideString : widestring; l_RVTable : TRVTableItemInfo; l_stream ...
- Sun Feb 11, 2007 12:59 pm
- Forum: Support
- Topic: Distribute rows evenly in a table
- Replies: 0
- Views: 14135
Distribute rows evenly in a table
Hi, Is there a way to distribute rows evenly in a table. I have inserted data into cells in a table, and i need to readjust the row height so that it is the same among all rows. Is there way to distribute the rows evenly, similar to MS Word where i highlight the table, right click and select ...
- Fri Feb 09, 2007 12:45 am
- Forum: Support
- Topic: Set table line style to dotted line
- Replies: 3
- Views: 13781
Set table line style to dotted line
Hi,
I have created tables to be inserted in the TRichViewEdit component. Is there anyway I can set a table's line style to dotted line? Under the TRVTableItemInfo class, i can set the BorderStyle and BorderColor, but i would like the line style to be dotted instead of a solid line. Is that possible?
I have created tables to be inserted in the TRichViewEdit component. Is there anyway I can set a table's line style to dotted line? Under the TRVTableItemInfo class, i can set the BorderStyle and BorderColor, but i would like the line style to be dotted instead of a solid line. Is that possible?
- Fri Feb 09, 2007 12:39 am
- Forum: Support
- Topic: Setting text style to selected text in a table/cell
- Replies: 2
- Views: 11100
- Thu Feb 08, 2007 2:28 am
- Forum: Support
- Topic: Setting text style to selected text in a table/cell
- Replies: 2
- Views: 11100
Setting text style to selected text in a table/cell
Hi, How do i change the text style (font name, bold, italics..) of text in a table item? Let me explain the flow: I will first insert an rtf text into a cell in a table using LoadRTFFromStream: l_RVTableItemInfo.Cells[0, 0].LoadRTFFromStream(l_Stream); The rtf text contain unicode characters, and as ...