IVsUserData::SetData Method (Guid, Object^)

 

Sets user data to a buffer.

Namespace:   Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

int SetData(
	[InAttribute] Guid% riidKey,
	Object^ vtData
)

Parameters

riidKey
Type: System::Guid

[in] Unique identifier of the data.

vtData
Type: System::Object^

[in] Data to be set.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From textmgr.idl:

HRESULT IVsUserData::SetData(
   [in] REFGUID riidKey,
   [in] VARIANT vtData
);

A copy is made of the data, so the caller still owns the VARIANT being passed in.

Return to top
Show: