File: winforms\Managed\System\WinForms\TableLayoutPanelCellBorderStyle.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="TableLayoutPanelCellBorderStyle.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Windows.Forms
{
    using System;
    using System.ComponentModel;
 
    /// <include file='doc\TableLayoutPanelCellBorderStyle.uex' path='docs/doc[@for="TableLayoutPanelCellBorderStyle.TableLayoutPanelCellBorderStyle"]/*' />
    /// <devdoc>
    /// <para></para>
    /// </devdoc>
    public enum TableLayoutPanelCellBorderStyle
    {
        /// <include file='doc\TableLayoutPanelCellBorderStyle.uex' path='docs/doc[@for="TableLayoutPanelCellBorderStyle.None"]/*' />
        None = 0,
 
        /// <include file='doc\TableLayoutPanelCellBorderStyle.uex' path='docs/doc[@for="TableLayoutPanelCellBorderStyle.Single"]/*' />
        Single = 1,
 
        /// <include file='doc\TableLayoutPanelCellBorderStyle.uex' path='docs/doc[@for="TableLayoutPanelCellBorderStyle.Inset"]/*' />
        Inset = 2,
 
        /// <include file='doc\TableLayoutPanelCellBorderStyle.uex' path='docs/doc[@for="TableLayoutPanelCellBorderStyle.InsetDouble"]/*' />
        InsetDouble = 3,
 
        /// <include file='doc\TableLayoutPanelCellBorderStyle.uex' path='docs/doc[@for="TableLayoutPanelCellBorderStyle.Outset"]/*' />
        Outset = 4,
 
        /// <include file='doc\TableLayoutPanelCellBorderStyle.uex' path='docs/doc[@for="TableLayoutPanelCellBorderStyle.OutsetDouble"]/*' />
        OutsetDouble = 5,
 
        /// <include file='doc\TableLayoutPanelCellBorderStyle.uex' path='docs/doc[@for="TableLayoutPanelCellBorderStyle.OutsetPartial"]/*' />
        OutsetPartial = 6
    }
}