Version

RowSelectors Property

Returns or sets a value that determines whether row selectors will be displayed.
Syntax
'Declaration
 
Public Property RowSelectors As Infragistics.Win.DefaultableBoolean
public Infragistics.Win.DefaultableBoolean RowSelectors {get; set;}
Remarks

Row selectors are the part of the grid interface that appears at the left edge of each row. Row selectors provide information about the rows (which row is currently active, which rows have uncommitted edits) and you can click on a row selector to select the entire row at once. You can choose to display record selectors or not, either for the whole grid or on a band-by-band basis. The RowSelectors property specifies whether row selectors will be displayed in the band or the grid controlled by the specified override.

Example
Following code sets the RowSelectors on the layout's override and a band's override.

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

  Private Sub Button81_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button81.Click

      ' RowSelectors indicate whether row selectors are displayed. Each row has a row selector 
      ' on the left side of the row. It's used to activate and select rows. Row selectors are
      ' visible by default, however you can set the RowSelectors property on the override to 
      ' False to hide the row selectors.
      Me.ultraGrid1.DisplayLayout.Bands(0).Override.RowSelectors = DefaultableBoolean.True

      ' You can use the RowSelectorAppearance property customize the appearance of the row 
      ' selectors.
      Me.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance.BackColor = Color.DarkBlue

      ' You can override that grid-wide setting for a particular band by setting it on the
      ' override of that band.
      Me.ultraGrid1.DisplayLayout.Bands(1).Override.RowSelectors = DefaultableBoolean.False

  End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;

private void button81_Click(object sender, System.EventArgs e)
{

	// RowSelectors indicate whether row selectors are displayed. Each row has a row selector 
	// on the left side of the row. It's used to activate and select rows. Row selectors are
	// visible by default, however you can set the RowSelectors property on the override to 
	// False to hide the row selectors.
	this.ultraGrid1.DisplayLayout.Bands[0].Override.RowSelectors = DefaultableBoolean.True;

	// You can use the RowSelectorAppearance property customize the appearance of the row 
	// selectors.
	this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance.BackColor = Color.DarkBlue;

	// You can override that grid-wide setting for a particular band by setting it on the
	// override of that band.
	this.ultraGrid1.DisplayLayout.Bands[1].Override.RowSelectors =  DefaultableBoolean.False;

}
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