Articles in this section
Category / Section

How to align the header text in WinForms GridListControl?

3 mins read

Align the header text

To change the header text alignment of the WinForms GridListControl, any of the following methods can be used.

  1. Using QueryCellInfo event
  2. 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;
    }
}
VB
'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
Using BaseStyleMap property


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; 
VB
'Using BaseStyleMap to change header alignment.
Me.gridListControl1.Grid.BaseStylesMap("Column Header").StyleInfo.HorizontalAlignment = GridHorizontalAlignment.Left 
  HeaderText alignment as shown in the below Screenshot

Align the header text in GridListControl


Samples:

C#: Text Alignment CS

VB: Text Alignment VB


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 forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied