Articles in this section
Category / Section

How to change the color of the selected range of cells in a WinForms GridControl?

1 min read

Change selected range color

You can change the color of the selected range of cells in a WinForms Grid control by handling the PrepareViewStyleInfo event and by changing the text color and the backcolor of the selected ranges of cells.

C#

void gridControl1_PrepareViewStyleInfo(object sender, Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs e)
{
   if (e.ColIndex > 0 && e.RowIndex > 0)
   {
      //get the range of the selected cells
      GridRangeInfoList range;
      if(this.gridControl1.Selections.GetSelectedRanges(out range,false) &&range.AnyRangeIntersects(GridRangeInfo.Cell(e.RowIndex,e.ColIndex)))
      {
         e.Style.BackColor=Color.Red;
         e.Style.TextColor=Color.Yellow;
      }
   }
}

 VB

Private Sub gridControl1_PrepareViewStyleInfo(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs)
   If e.ColIndex > 0 AndAlso e.RowIndex > 0 Then
   'get the range of the selected cells
   Dim range As GridRangeInfoList
      If Me.gridControl1.Selections.GetSelectedRanges(range,False) AndAlso range.AnyRangeIntersects(GridRangeInfo.Cell(e.RowIndex,e.ColIndex)) Then
         e.Style.BackColor=Color.Red
         e.Style.TextColor=Color.Yellow
      End If
   End If
End Sub

After applying the properties, the Grid is displayed as follows.

Change the backcolor and textcolor of selected range

Figure 1: Change the backcolor and text color of the selected ranges

Samples:

C#: Changing selected range color

VB: Changing selected range color

 

Conclusion

I hope you enjoyed learning about how to change the color of the selected range of cells in a WinForms GridControl.

You can refer to our WinForms GridControl’s feature tour page to know about its other groundbreaking feature representations. You can also explore our documentation 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 comments 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 sign in to leave a comment
Access denied
Access denied