File: winforms\Managed\System\WinForms\TextDataFormat.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="TextDataFormat.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.Windows.Forms {
 
    /// <include file='doc\TextDataFormat.uex' path='docs/doc[@for="TextDataFormat"]/*' />
    /// <devdoc>
    ///    <para>Specifies the formats that can be used with Clipboard.GetText and Clipboard.SetText methods</para>
    /// </devdoc>
    public enum TextDataFormat {
        /// <include file='doc\TextDataFormat.uex' path='docs/doc[@for="TextDataFormat.Text"]/*' />
        /// <devdoc>
        ///    <para>[To be supplied.]</para>
        /// </devdoc>
        Text,
        /// <include file='doc\TextDataFormat.uex' path='docs/doc[@for="TextDataFormat.UnicodeText"]/*' />
        /// <devdoc>
        ///    <para>[To be supplied.]</para>
        /// </devdoc>
        UnicodeText,
        /// <include file='doc\TextDataFormat.uex' path='docs/doc[@for="TextDataFormat.Rtf"]/*' />
        /// <devdoc>
        ///    <para>[To be supplied.]</para>
        /// </devdoc>
        Rtf,
        /// <include file='doc\TextDataFormat.uex' path='docs/doc[@for="TextDataFormat.Html"]/*' />
        /// <devdoc>
        ///    <para>[To be supplied.]</para>
        /// </devdoc>
        Html,
        /// <include file='doc\TextDataFormat.uex' path='docs/doc[@for="TextDataFormat.CommaSeparatedValue"]/*' />
        /// <devdoc>
        ///    <para>[To be supplied.]</para>
        /// </devdoc>
        CommaSeparatedValue
    }
}