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