Home › Forums › WinForms controls › Xceed Grid for WinForms › Problem with Groups title › Reply To: Problem with Groups title
To retrieve the groupManagerRow from a group and set the TitleFormat:
if (group.HeaderRows.Count > 0)
{
Xceed.Grid.GroupManagerRow row = group.HeaderRows[0] as Xceed.Grid.GroupManagerRow;
if (row != null) row.TitleFormat = “….”;
}
Imported from legacy forums. Posted by Tommy (had 235 views)