Search found 5 matches

by miyomo
Sun May 04, 2008 8:58 pm
Forum: Support
Topic: Fixed cells
Replies: 3
Views: 13473

Sergey Tkachenko wrote:You can include rvtoIgnoreContentWidth and rvtoIgnoreContentHeight in table.Options. In this mode, width and heights of all cells are calculated basing on their BestWidth and BestHeight properties, sizes of cells contents are ignored.
Hi, Sergey!
Can U post a little demo? Thanks for your help.
by miyomo
Sat Apr 21, 2007 8:19 am
Forum: Support
Topic: Tables and fonts..
Replies: 3
Views: 11867

[quote="Sergey Tkachenko"] var table: TRVTableItemInfo; begin table := TRVTableItemInfo.CreateEx(1, 2, RichView1.RVData); [/quote] Thanks for your kindly help, Sergey. Just the last question. Is it possible arrange column width runtime? I tried table.Cells[0,0].Width := xx but doens't work. I need ...
by miyomo
Fri Apr 20, 2007 9:49 pm
Forum: Support
Topic: Tables and fonts..
Replies: 3
Views: 11867

Tables and fonts..

Hi!
how can I build a table without borders, and is it possible to use differents fonts inside cells?
I have to align data with differents fonts. No edit need, just readonly.

Any example?

Thanks!
by miyomo
Fri Apr 13, 2007 7:17 pm
Forum: Support
Topic: Change text attributes without using RVStyles?
Replies: 3
Views: 13589

Styles are the only way to implement this. How do you plan to define these attributes in your application? Hi Sergey! Thanks for reply. Actually I use a richedit loading a simple file text and formatting it with colors and styles. The richedit don't need to be editable, but users can define styles ...
by miyomo
Fri Apr 13, 2007 6:36 am
Forum: Support
Topic: Change text attributes without using RVStyles?
Replies: 3
Views: 13589

Change text attributes without using RVStyles?

Hi! In a richedit if I would color a single word I use this code. SelAttributes.Color := clRed; SelText := 'Hi World!'; SelAttributes := DefAttributes; Is it possible to do the same in a Richview without using RVStyles? How can I change text attributes (font, backcolor, color, styles...) runtime? My ...