File: winforms\Managed\System\WinForms\GridItemType.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="GridItemType.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Windows.Forms
{
    /// <include file='doc\GridItemType.uex' path='docs/doc[@for="GridItemType"]/*' />
    /// <devdoc>
    ///    <para>[To be supplied.]</para>
    /// </devdoc>
    public enum GridItemType {
        /// <include file='doc\GridItemType.uex' path='docs/doc[@for="GridItemType.Property"]/*' />
        /// <devdoc>
        ///    <para>[To be supplied.]</para>
        /// </devdoc>
        Property,
        /// <include file='doc\GridItemType.uex' path='docs/doc[@for="GridItemType.Category"]/*' />
        /// <devdoc>
        ///    <para>[To be supplied.]</para>
        /// </devdoc>
        Category,
        /// <include file='doc\GridItemType.uex' path='docs/doc[@for="GridItemType.ArrayValue"]/*' />
        /// <devdoc>
        ///    <para>[To be supplied.]</para>
        /// </devdoc>
        ArrayValue, 
        /// <include file='doc\GridItemType.uex' path='docs/doc[@for="GridItemType.Root"]/*' />
        /// <devdoc>
        ///    <para>[To be supplied.]</para>
        /// </devdoc>
        Root
    }
 
}