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)