Ticket Q270930
Visible to All Users

TcxListView Bold Rows

created 15 years ago

Hi,
I use TcxListView in my C++ application, and I need to make few rows in bold, how o do that,so others roes will appear normally too?
meaning if I want some entries in the list to be bold in all columns , and some entries not?
an Example would be appreciated , thanks
-Sarkis

Comments (1)
DevExpress Support Team 15 years ago

    Hello Sarkis,
    Thank you for the message.
    You can handle the TcxCustomListView.OnCustomDrawItem event to change the font style:

    Delphi
    void __fastcall TForm2::cxListView1CustomDrawItem(TCustomListView *Sender, TListItem *Item, TCustomDrawState State, bool &DefaultDraw) { if (Item->Index == 2) Sender->Canvas->Font->Style = Sender->Canvas->Font->Style << fsBold; }

    Attached is a sample project, demonstrating how to accomplish this.
    For more information, please read the "TcxCustomListView.OnCustomDrawItem" topic.
    Thanks,
    Valdemar

    Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

    Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.