ClipboardProxy.GetText 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索剪贴板上的文本。
重载
GetText() |
检索剪贴板上的文本。 |
GetText(TextDataFormat) |
检索剪贴板上的文本。 |
GetText()
检索剪贴板上的文本。
public:
System::String ^ GetText();
public string GetText ();
member this.GetText : unit -> string
Public Function GetText () As String
返回
剪贴板文本数据;如果剪贴板不包含 Text 或 UnicodeText 格式的数据(取决于操作系统),则为空字符串。
示例
此示例将剪贴板中的文本读入字符串 textOnClipboard
。
Dim textOnClipboard As String = My.Computer.Clipboard.GetText()
如果剪贴板上没有文本,则此示例将失败。
注解
可能的格式为 CommaSeparatedValue、 HtmlRtf 和 UnicodeText。
可用性(按项目类型)
项目类型 | 可用 |
---|---|
Windows 应用程序 | 是 |
类库 | 是 |
控制台应用程序 | 是 |
Windows 控件库 | 是 |
Web 控件库 | 否 |
Windows 服务 | 是 |
网站 | 否 |
另请参阅
- Computer
- TextDataFormat
- GetText
- ContainsText
- SetText
- 对象 (Visual Basic)
- 将数据存储到剪贴板以及从剪贴板读取数据 (Visual Basic)
适用于
GetText(TextDataFormat)
检索剪贴板上的文本。
public:
System::String ^ GetText(System::Windows::Forms::TextDataFormat format);
public string GetText (System.Windows.Forms.TextDataFormat format);
member this.GetText : System.Windows.Forms.TextDataFormat -> string
Public Function GetText (format As TextDataFormat) As String
参数
- format
- TextDataFormat
TextDataFormat. 如果指定,则标识应检索的文本格式。 默认值为 CommaSeparatedValue。 必需。
返回
剪贴板文本数据;如果剪贴板中不包含指定格式的数据,则为空字符串。
示例
此示例将剪贴板中的文本读入字符串 textOnClipboard
。
Dim textOnClipboard As String = My.Computer.Clipboard.GetText()
如果剪贴板上没有文本,则此示例将失败。
注解
可能的格式为 CommaSeparatedValue、 HtmlRtf 和 UnicodeText。
可用性(按项目类型)
项目类型 | 可用 |
---|---|
Windows 应用程序 | 是 |
类库 | 是 |
控制台应用程序 | 是 |
Windows 控件库 | 是 |
Web 控件库 | 否 |
Windows 服务 | 是 |
网站 | 否 |
另请参阅
- Computer
- TextDataFormat
- GetText
- ContainsText
- SetText
- 对象 (Visual Basic)
- 将数据存储到剪贴板以及从剪贴板读取数据 (Visual Basic)