Notifications
Clear all
0
May 4, 2021 10:00 am
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
May 4, 2021 10:29 am
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