IDataObjectSetData(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.Serialization.ClipboardAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax 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.
See Also