File: winforms\Managed\System\WinForms\CharacterCasing.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="CharacterCasing.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
/*
 */
namespace System.Windows.Forms {
 
    using System.Diagnostics;
    using System;
    using System.ComponentModel;
    using System.Drawing;
    using Microsoft.Win32;
 
 
 
    /// <include file='doc\CharacterCasing.uex' path='docs/doc[@for="CharacterCasing"]/*' />
    /// <devdoc>
    ///    <para>
    ///       Specifies the case of characters in a Textbox control.
    ///    </para>
    /// </devdoc>
    public enum CharacterCasing {
 
        /// <include file='doc\CharacterCasing.uex' path='docs/doc[@for="CharacterCasing.Normal"]/*' />
        /// <devdoc>
        ///    <para>
        ///       The case of
        ///       characters is left unchanged.
        ///    </para>
        /// </devdoc>
        Normal = 0,
 
        /// <include file='doc\CharacterCasing.uex' path='docs/doc[@for="CharacterCasing.Upper"]/*' />
        /// <devdoc>
        ///    <para>
        ///       Converts all characters to uppercase.
        ///    </para>
        /// </devdoc>
        Upper = 1,
 
        /// <include file='doc\CharacterCasing.uex' path='docs/doc[@for="CharacterCasing.Lower"]/*' />
        /// <devdoc>
        ///    <para>
        ///       Converts all characters to lowercase.
        ///    </para>
        /// </devdoc>
        Lower = 2,
 
    }
}