How to align the header text in WinForms GridListControl?
Align the header text
To
change the header text alignment of the WinForms
GridListControl, any of the following methods can be used.
- Using QueryCellInfo event
- Using BaseStylesMap property
Using QueryCellInfo event
The HorizontalAlignment property can be used via QueryCellInfo event to change the header text alignment.
C#
//Triggering the event.
this.gridListControl1.Grid.QueryCellInfo += new GridQueryCellInfoEventHandler(Grid_QueryCellInfo);
//Handling the event.
void Grid_QueryCellInfo(object sender, GridQueryCellInfoEventArgs e)
{
//you can check any of the column headers.
if (e.RowIndex == 0 && e.ColIndex == 1)
{
//Set the header alignment
e.Style.HorizontalAlignment = GridHorizontalAlignment.Left;
}
}
'Triggering the event.
AddHandler Me.gridListControl1.Grid.QueryCellInfo, AddressOf Grid_QueryCellInfo
'Handling the event.
Private Sub Grid_QueryCellInfo(ByVal sender As Object, ByVal e As GridQueryCellInfoEventArgs)
'you can check any of the column headers.
If e.RowIndex = 0 AndAlso e.ColIndex = 1 Then
'Set the header alignment
e.Style.HorizontalAlignment = GridHorizontalAlignment.Left
End If
End Sub
The HorizontalAlignment property can be used via the BaseStyleMap. For more information about BaseStyleMap refer this article.
C#
//Using BaseStyleMap to change header alignment.
this.gridListControl1.Grid.BaseStylesMap["Column Header"].StyleInfo.HorizontalAlignment = GridHorizontalAlignment.Left;
'Using BaseStyleMap to change header alignment.
Me.gridListControl1.Grid.BaseStylesMap("Column Header").StyleInfo.HorizontalAlignment = GridHorizontalAlignment.Left
Samples:
Conclusion
I
hope you enjoyed learning about how to align the header text in GridListControl.
You
can refer to our WinForms GridListControl feature tour page to know about its other
groundbreaking feature representations and WinForms GridListControl documentation, and how to quickly get started for
configuration specifications. You can also explore our WinForms GridListControl example to
understand how to create and manipulate data.
For
current customers, you can check out our components from
the License
and Downloads page. If you are new to Syncfusion, you can try our
30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!