Clipboard.SetText 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在剪貼簿上儲存文字資料。 要儲存的文字資料會指定為字串。
多載
SetText(String) |
在 [剪貼簿] 上儲存 UnicodeText 資料。 |
SetText(String, TextDataFormat) |
以指定的文字資料格式將文字資料儲存在剪貼簿上。 要儲存的 UnicodeText 資料會指定為字串。 |
SetText(String)
在 [剪貼簿] 上儲存 UnicodeText 資料。
public:
static void SetText(System::String ^ text);
public static void SetText (string text);
static member SetText : string -> unit
Public Shared Sub SetText (text As String)
參數
- text
- String
字串,其中包含要儲存在剪貼簿上的 UnicodeText 資料。
例外狀況
text
為 null
。
備註
此資料格式表示 16 位字元編碼的 Unicode,也稱為 UTF-16 和 UCS-2。
這個方法會新增停用自動轉換的資料。
另請參閱
- SetAudio
- SetData(String, Object)
- SetDataObject
- SetFileDropList(StringCollection)
- SetImage(BitmapSource)
- ContainsText
- GetImage()
- DataFormats
適用於
SetText(String, TextDataFormat)
以指定的文字資料格式將文字資料儲存在剪貼簿上。 要儲存的 UnicodeText 資料會指定為字串。
public:
static void SetText(System::String ^ text, System::Windows::TextDataFormat format);
public static void SetText (string text, System.Windows.TextDataFormat format);
static member SetText : string * System.Windows.TextDataFormat -> unit
Public Shared Sub SetText (text As String, format As TextDataFormat)
參數
- text
- String
字串,其中包含要儲存在剪貼簿上的文字資料。
- format
- TextDataFormat
會指定要儲存之特定文字資料格式的 TextDataFormat 成員。
例外狀況
text
為 null
。
備註
這個方法會新增停用自動轉換的資料。
另請參閱
- SetAudio
- SetData(String, Object)
- SetDataObject
- SetFileDropList(StringCollection)
- SetImage(BitmapSource)
- ContainsText
- GetImage()
- DataFormats