DataObject.IDataObject.SetData(FORMATETC, STGMEDIUM, Boolean) Method

Definition

Transfers data to the object that implements this method. This method is called by an object that contains a data source.

 virtual void System.Runtime.InteropServices.ComTypes.IDataObject.SetData(System::Runtime::InteropServices::ComTypes::FORMATETC % pFormatetcIn, System::Runtime::InteropServices::ComTypes::STGMEDIUM % pmedium, bool fRelease) = System::Runtime::InteropServices::ComTypes::IDataObject::SetData;
void IDataObject.SetData (ref System.Runtime.InteropServices.ComTypes.FORMATETC pFormatetcIn, ref System.Runtime.InteropServices.ComTypes.STGMEDIUM pmedium, bool fRelease);
abstract member System.Runtime.InteropServices.ComTypes.IDataObject.SetData : FORMATETC * STGMEDIUM * bool -> unit
override this.System.Runtime.InteropServices.ComTypes.IDataObject.SetData : FORMATETC * STGMEDIUM * bool -> unit
Sub SetData (ByRef pFormatetcIn As FORMATETC, ByRef pmedium As STGMEDIUM, fRelease As Boolean) Implements IDataObject.SetData

Parameters

pFormatetcIn
FORMATETC

A FORMATETC structure, passed by reference, that defines the format used by the data object when interpreting the data contained in the storage medium.

pmedium
STGMEDIUM

A STGMEDIUM structure, passed by reference, that defines the storage medium in which the data is being passed.

fRelease
Boolean

true to specify that the data object called, which implements SetData(FORMATETC, STGMEDIUM, Boolean), owns the storage medium after the call returns. This means that the data object must free the medium after it has been used by calling the ReleaseStgMedium function. false to specify that the caller retains ownership of the storage medium, and the data object called uses the storage medium for the duration of the call only.

Implements

Exceptions

This method does not support the type of the underlying data object.

Remarks

This member is an explicit interface member implementation. It can be used only when the DataObject is cast to an IDataObject interface.

Applies to