Click or drag to resize

ListViewDragDropDataObjectSetData(String, Object, Boolean) Method

Stores the specified data in this data object, along with one or more specified data formats. This overload includes a Boolean flag to indicate whether the data may be converted to another format on retrieval.

Namespace: Altaxo.Gui.Pads.ProjectBrowser
Assembly: AltaxoDom (in AltaxoDom.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public void SetData(
	string format,
	Object data,
	bool autoConvert
)

Parameters

format  String
A string that specifies what format to store the data in. See the DataFormats class for a set of pre-defined data formats.
data  Object
The data to store in this data object.
autoConvert  Boolean
true to allow the data to be converted to another format on retrieval; false to prohibit the data from being converted to another format on retrieval.

Implements

IDataObjectSetData(String, Object, Boolean)
See Also