Search found 5 matches

by luvcloud_say
Mon Feb 12, 2007 1:08 am
Forum: Support
Topic: Set table line style to dotted line
Replies: 3
Views: 12613

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...
by luvcloud_say
Sun Feb 11, 2007 12:59 pm
Forum: Support
Topic: Distribute rows evenly in a table
Replies: 0
Views: 12733

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 Distrib...
by luvcloud_say
Fri Feb 09, 2007 12:45 am
Forum: Support
Topic: Set table line style to dotted line
Replies: 3
Views: 12613

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?
by luvcloud_say
Fri Feb 09, 2007 12:39 am
Forum: Support
Topic: Setting text style to selected text in a table/cell
Replies: 2
Views: 10364

ahh..I know why it still showed funny characters even after i did the steps u listed. I didn't realize there was another Unicode property i need to set to True under the TextStyles items in the TRVStyle component.

It's working fine now. Thanks!
by luvcloud_say
Thu Feb 08, 2007 2:28 am
Forum: Support
Topic: Setting text style to selected text in a table/cell
Replies: 2
Views: 10364

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...