Click or drag to resize

ListViewDragDropDataObjectGetData(String, Boolean) Method

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

Namespace: Altaxo.Gui.Pads.ProjectBrowser
Assembly: AltaxoDom (in AltaxoDom.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public 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.

Implements

IDataObjectGetData(String, Boolean)
See Also