File: winforms\Managed\System\WinForms\ErrorIconAlignment.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="ErrorIconAlignment.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Windows.Forms {
 
    using System.Diagnostics;
    
    /// <include file='doc\ErrorIconAlignment.uex' path='docs/doc[@for="ErrorIconAlignment"]/*' />
    /// <devdoc>
    ///     Describes the set of locations that an error icon can appear in
    ///     relation to the control with the error.
    /// </devdoc>
    public enum ErrorIconAlignment {
    
        /// <include file='doc\ErrorIconAlignment.uex' path='docs/doc[@for="ErrorIconAlignment.TopLeft"]/*' />
        /// <devdoc>
        ///     The icon appears aligned with the top of the control, and to
        ///     the left of the control.
        /// </devdoc>
        TopLeft,
        
        /// <include file='doc\ErrorIconAlignment.uex' path='docs/doc[@for="ErrorIconAlignment.TopRight"]/*' />
        /// <devdoc>
        ///     The icon appears aligned with the top of the control, and to
        ///     the right of the control.
        /// </devdoc>
        TopRight,
        
        /// <include file='doc\ErrorIconAlignment.uex' path='docs/doc[@for="ErrorIconAlignment.MiddleLeft"]/*' />
        /// <devdoc>
        ///     The icon appears aligned with the middle of the control, and
        ///     the left of the control.
        /// </devdoc>
        MiddleLeft,
        
        /// <include file='doc\ErrorIconAlignment.uex' path='docs/doc[@for="ErrorIconAlignment.MiddleRight"]/*' />
        /// <devdoc>
        ///     The icon appears aligned with the middle of the control, and
        ///     the right of the control.
        /// </devdoc>
        MiddleRight,
        
        /// <include file='doc\ErrorIconAlignment.uex' path='docs/doc[@for="ErrorIconAlignment.BottomLeft"]/*' />
        /// <devdoc>
        ///     The icon appears aligned with the bottom of the control, and
        ///     the left of the control.
        /// </devdoc>
        BottomLeft,
        
        /// <include file='doc\ErrorIconAlignment.uex' path='docs/doc[@for="ErrorIconAlignment.BottomRight"]/*' />
        /// <devdoc>
        ///     The icon appears aligned with the bottom of the control, and
        ///     the right of the control.
        /// </devdoc>
        BottomRight
    }
    
}