Imports Infragistics.Win.UltraWinSchedule
Imports Infragistics.Win.UltraWinGanttView
Private Sub setSelectionOverlay()
' Sets the color for the borders drawn around the selected row(task) in the grid portion of the control
Me.ultraGanttView1.GridSettings.SelectionOverlayBorderColor = Color.Red
' Sets the thickness of the border drawn around the selection overlay in the grid portion of the control
Me.ultraGanttView1.GridSettings.SelectionOverlayBorderThickness = 4
' Sets the color to overlay the selected row(Task) in the grid portion of the control
Me.ultraGanttView1.GridSettings.SelectionOverlayColor = Color.Green
End Sub