How to set the Head...
 
Notifications
Clear all

[Solved] How to set the Header Bold

1 Posts
2 Users
0 Likes
1,284 Views
0
Topic starter

I see several properties that can be set for individual cells and the entire list.  But I can't seem to find the property to set the header to bold?  Suggestions? Thanks. Ben

1 Answer
0

There is not a general property for all headers, but you can set the bold property for each column by accessing the ListColumn object for each column.

for col as integer=0 to myDataView.columnCount-1
   myDataView.Column(col).HeadingTextBold=true
next

//trigger a redraw to see the change
myDataView.redraw