Sets content of the system clipboard.

Namespace: Sgry.Azuki
Assembly: Azuki (in Azuki.dll) Version: 1.7.13.40248

Syntax

C#
void SetClipboardText(
	string text,
	TextDataType dataType
)
Visual Basic
Sub SetClipboardText ( 
	text As String,
	dataType As TextDataType
)

Parameters

text
Type: System..::..String
Text data to set.
dataType
Type: Sgry.Azuki..::..TextDataType
Type of the data to set.

Remarks

This method set content of the system clipboard. If dataType is TextDataType.Normal, the text data will be just a character sequence. If dataType is TextDataType.Line or TextDataType.Rectangle, stored text data would be special format that is compatible with Microsoft Visual Studio.

See Also