Click or drag to resize

IDataObjectGetData(String, Boolean) Method

Retrieves a data object in a specified format, optionally converting the data to the specified format.

Namespace: Altaxo.Serialization.Clipboard
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
Object? GetData(
	string format,
	bool autoConvert
)

Parameters

format  String
A string that specifies what format to retrieve the data as. See the DataFormats class for a set of predefined data formats.
autoConvert  Boolean
true to attempt to automatically convert the data to the specified format; false for no data format conversion. If this parameter is false, the method returns data in the specified format if available, or null if the data is not available in the specified format.

Return Value

Object
A data object with the data in the specified format, or null if the data is not available in the specified format.
See Also