IVsObjectManager2::ParseDataObject Method (IDataObject^, IVsSelectedSymbols^)
Visual Studio 2015
Parses the data object created by Class View during drag-drop or copy operations.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int ParseDataObject(
IDataObject^ pIDataObject,
[OutAttribute] IVsSelectedSymbols^% ppSymbols
)
Parameters
- pIDataObject
-
Type:
Microsoft.VisualStudio.OLE.Interop::IDataObject^
The IDataObject:IUnknown that contains row data provided by Class View from drag-drop or copy operations.
- ppSymbols
-
Type:
Microsoft.VisualStudio.Shell.Interop::IVsSelectedSymbols^
The symbols currently selected in Class View or Object Browser tools.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
HRESULT ParseDataObject(
[in]IDataObject * pIDataObject,
[out] IVsSelectedSymbols ** ppSymbols
);
Show: