File: winforms\Managed\System\WinForms\SelectionMode.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="SelectionMode.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Windows.Forms {
 
    /// <include file='doc\SelectionMode.uex' path='docs/doc[@for="SelectionMode"]/*' />
    /// <devdoc>
    /// </devdoc>
    [System.Runtime.InteropServices.ComVisible(true)]
    public enum SelectionMode {
 
        /// <include file='doc\SelectionMode.uex' path='docs/doc[@for="SelectionMode.None"]/*' />
        /// <devdoc>
        ///     indicates that no items can be selected.
        /// </devdoc>
        None             = 0,
 
        /// <include file='doc\SelectionMode.uex' path='docs/doc[@for="SelectionMode.One"]/*' />
        /// <devdoc>
        ///     indicates that only one item at a time can be selected.
        /// </devdoc>
        One              = 1,
 
        /// <include file='doc\SelectionMode.uex' path='docs/doc[@for="SelectionMode.MultiSimple"]/*' />
        /// <devdoc>
        ///     indicates that more than one item at a time can be selected.
        /// </devdoc>
        MultiSimple     = 2,
 
        /// <include file='doc\SelectionMode.uex' path='docs/doc[@for="SelectionMode.MultiExtended"]/*' />
        /// <devdoc>
        ///     Indicates that more than one item at a time can be selected, and
        ///     keyboard combinations, such as SHIFT and CTRL can be used to help
        ///     in selection.
        /// </devdoc>
        MultiExtended   = 3,
 
    }
}