Version

RowSelectorWidth Property

Gets or sets the row selector widths. Default value is 0 which means a reasonable default width will be used for row selectors.
Syntax
'Declaration
 
Public Property RowSelectorWidth As Integer
public int RowSelectorWidth {get; set;}
Remarks

RowSelectorWidth property can be used to control the widths of the row selectors. Default value is 0 which means a reasonable default width will be used for 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