ClipboardProxy.SetText 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將文字寫入至 [剪貼簿]。
多載
SetText(String) |
將文字寫入至 [剪貼簿]。 |
SetText(String, TextDataFormat) |
將文字寫入至 [剪貼簿]。 |
SetText(String)
將文字寫入至 [剪貼簿]。
public:
void SetText(System::String ^ text);
public void SetText (string text);
member this.SetText : string -> unit
Public Sub SetText (text As String)
參數
- text
- String
String
. 要寫入的文字。 必要。
例外狀況
text
為空字串。
text
為 Nothing
。
範例
此範例會將字串 This is a test string.
寫入剪貼簿。
My.Computer.Clipboard.SetText("This is a test string.")
備註
可能的格式為CommaSeparatedValue、 HtmlRtf 與 UnicodeText。
不會保留先前的剪貼簿格式。
重要
因為其他使用者可以存取剪貼簿,所以請不要使用它來儲存機密資訊,例如密碼或機密資料。
依專案類型的可用性
專案類型 | 可用 |
---|---|
Windows 應用程式 | 是 |
類別庫 | 是 |
主控台應用程式 | 是 |
Windows 控制項程式庫 | 是 |
Web 控制項程式庫 | 否 |
Windows 服務 | 是 |
網站 | 否 |
另請參閱
適用於
SetText(String, TextDataFormat)
將文字寫入至 [剪貼簿]。
public:
void SetText(System::String ^ text, System::Windows::Forms::TextDataFormat format);
public void SetText (string text, System.Windows.Forms.TextDataFormat format);
member this.SetText : string * System.Windows.Forms.TextDataFormat -> unit
Public Sub SetText (text As String, format As TextDataFormat)
參數
- text
- String
String
. 要寫入的文字。 必要。
- format
- TextDataFormat
TextDataFormat. 寫入文字時所要使用的格式。 預設為 UnicodeText。 必要。
例外狀況
text
為空字串。
text
為 Nothing
。
範例
此範例會將字串 This is a test string.
寫入剪貼簿。
My.Computer.Clipboard.SetText("This is a test string.")
備註
可能的格式為CommaSeparatedValue、 HtmlRtf 與 UnicodeText。
不會保留先前的剪貼簿格式。
重要
因為其他使用者可以存取剪貼簿,所以請不要使用它來儲存機密資訊,例如密碼或機密資料。
依專案類型的可用性
專案類型 | 可用 |
---|---|
Windows 應用程式 | 是 |
類別庫 | 是 |
主控台應用程式 | 是 |
Windows 控制項程式庫 | 是 |
Web 控制項程式庫 | 否 |
Windows 服務 | 是 |
網站 | 否 |