Click or drag to resize

ClipboardSerializationGetObjectFromClipboardT(String) Method

Gets an object of a certain type from the clipboard.

Namespace: Altaxo.Serialization.Clipboard
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static T GetObjectFromClipboard<T>(
	string clipBoardFormat
)

Parameters

clipBoardFormat  String
The clip board format string.

Type Parameters

T
The type of object to deserialize.

Return Value

T
The deserialized object. If deserialization was not possible, or the deserialized data was not of the expected type, the default object for type T is returned (default(T)).
See Also