Version

AllowDisparateSelection Enumeration

Constants which determine whether concurrent selection of disparate items (i.e., rows, columns, and cells) is allowed.
Syntax
'Declaration
 
Public Enum AllowDisparateSelection 
   Inherits System.Enum
public enum AllowDisparateSelection : System.Enum 
Members
MemberDescription
AllCombines the 'Rows', 'Columns', and 'Cells' settings. Items of any type can exist concurrently within the same selection.
CellsSelection of cells in conjunction with items of different types is allowed. For example, if a row is currently selected, and the user attempts to extend the selection to include a single cell, the operation is allowed.
ColumnsSelection of columns in conjunction with items of different types is allowed. For example, if a row is currently selected, and the user attempts to extend the selection to include a column, the operation is allowed.
ColumnsAndCellsCombines the 'Columns' and 'Cells' settings. Columns and cells can exist concurrently within the same selection, but rows cannot.
NoneSelection of rows, columns, and cells is mutually exclusive, i.e., if an item of one type is currently selected, selection is disallowed for items of the other types.
RowsSelection of rows in conjunction with items of different types is allowed. For example, if a cell is currently selected, and the user attempts to extend the selection to include a row, the operation is allowed.
RowsAndCellsCombines the 'Rows' and 'Cells' settings. Rows and cells can exist concurrently within the same selection, but columns cannot.
RowsAndColumnsCombines the 'Rows' and 'Columns' settings. Rows and columns can exist concurrently within the same selection, but cells cannot.
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