ComponentOne DataGrid for WPF and Silverlight
C1.WPF.DataGrid Namespace / DataGridSelectionMode Enumeration

In This Topic
    DataGridSelectionMode Enumeration
    In This Topic
    Determines the available selection modes.
    Syntax
    'Declaration
     
    
    Public Enum DataGridSelectionMode 
       Inherits System.Enum
    public enum DataGridSelectionMode : System.Enum 
    Members
    MemberDescription
    MultiColumnIt is possible to select more than one column at the same time using ctrl and shift keys.
    MultiRangeIt is possible to select more than one cell, range of cells, columns or rows at the same time using ctrl and shift keys.
    MultiRowIt is possible to select more than one row at the same time using ctrl and shift keys.
    NoneAny element will be selected.
    SingleCellOnly single cells can be selected.
    SingleColumnOnly a column can be selected at the same time.
    SingleRangeOnly a range of cells can be selected at the same time.
    SingleRowOnly a row can be selected at the same time.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.WPF.DataGrid.DataGridSelectionMode

    See Also