Version

BorderStyleRowSelector Property

Gets or sets the border style of row selectors.
Syntax
'Declaration
 
Public Property BorderStyleRowSelector As Infragistics.Win.UIElementBorderStyle
public Infragistics.Win.UIElementBorderStyle BorderStyleRowSelector {get; set;}
Remarks

You can use this property to change the border style of the row selectors. If this preoprty is set to Default, then BorderStyleHeader is used for the row selectors.

Example
Following code sets the row selector border style to Raised and the row selector width to 100.

Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid

    Private Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button2.Click
        ' Set the row selector border style to Raised.
        Me.UltraGrid1.DisplayLayout.Override.BorderStyleRowSelector = UIElementBorderStyle.Raised

        ' Set the row selector width to 100.
        Me.UltraGrid1.DisplayLayout.Override.RowSelectorWidth = 100
    End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;

		private void button2_Click(object sender, System.EventArgs e)
		{
			// Set the row selector border style to Raised.
			this.ultraGrid1.DisplayLayout.Override.BorderStyleRowSelector = UIElementBorderStyle.Raised;
			
			// Set the row selector width to 100.
			this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 100;
		}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also