File: winforms\Managed\System\WinForms\DataGridViewColumnSortMode.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="DataGridViewColumnSortMode.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Windows.Forms
{
    using System;
    using System.ComponentModel;
 
    /// <include file='doc\DataGridViewColumnSortMode.uex' path='docs/doc[@for="DataGridViewColumnSortMode"]/*' />
    public enum DataGridViewColumnSortMode
    {
        /// <include file='doc\DataGridViewColumnSortMode.uex' path='docs/doc[@for="DataGridViewColumnSortMode.NotSortable"]/*' />
        NotSortable,
        /// <include file='doc\DataGridViewColumnSortMode.uex' path='docs/doc[@for="DataGridViewColumnSortMode.Automatic"]/*' />
        Automatic,
        /// <include file='doc\DataGridViewColumnSortMode.uex' path='docs/doc[@for="DataGridViewColumnSortMode.Programmatic"]/*' />
        Programmatic
    }
}