ClipboardSetString Method |
Sets a string into the clipboard with the specified type identifier.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public void SetString(
string value,
string type
)
Public Sub SetString (
value As String,
type As String
)
abstract SetString :
value : string *
type : string -> unit
override SetString :
value : string *
type : string -> unit
Parameters
- value
- Type: SystemString
Value to set in the clipboard. - type
- Type: SystemString
Type identifier that was used to store the data.
Implements
IDataObjectSetString(String, String)Remarks
This is useful when setting alternate string values into the clipboard that are not plain text.
If you are storing plain text, use the
Text property instead.
See Also