Painting the column title

Hi again!!

I was looking through the manuals and I couldn't find anything on painting the column title.

I know that if I want to paint the memo I'm suposed to do like this:

Memo.Color := clRed;

And if I want to paint the memo font only :

Memo.Font.Color := clRed;

But How am I supposed to paint the title???

| title1 | title2 | title3 |
row1 | data1 | data2 | data3 |
row2 | data1 | data2 | data3 |


Thanks

Comments

  • edited 2:04PM
    In script code:
    procedure Cross1OnPrintColumnHeader(Memo: TfrxMemoView; HeaderIndexes, HeaderValues, Value: Variant);
    begin
      Memo.Font.color:=clred;
    end
    

Leave a Comment