TextDataFormat
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Specifies the formats used with text-related methods of the Clipboard and DataObject classes.
- C#
- VB.NET
public enum TextDataFormat : Enum
Public Enum TextDataFormat As [Enum]
Fields
| Name | Description |
|---|---|
| CommaSeparatedValue | Specifies a comma-separated value (CSV) format, which is a common interchange format used by spreadsheets. |
| Html | Specifies text consisting of HTML data. |
| Rtf | Specifies text consisting of rich text format (RTF) data. |
| Text | Specifies the standard ANSI text format. |
| UnicodeText | Specifies the standard Unicode text format. |
Used By
| Name | Description |
|---|---|
| DataObject.GetText | Retrieves text data from the data object in the format indicated by the specified TextDataFormat value. |
| DataObject.ContainsText | Indicates whether the data object contains text data in the format indicated by the specified TextDataFormat value. |
| DataObject.SetText | Adds text data to the data object in the format indicated by the specified TextDataFormat value. |
| Clipboard.ContainsText | Indicates whether there is text data on the Clipboard in the format indicated by the specified TextDataFormat value. |
| Clipboard.GetText | Retrieves text data from the Clipboard in the format indicated by the specified TextDataFormat value. |
| Clipboard.SetText | Saves the text data in the format indicated by the specified TextDataFormat value to the clipboard. |