IVsDataObjectStringMapManager.ReadStringMap Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Reads the named string map from the specified data object.
public:
int ReadStringMap(Microsoft::VisualStudio::OLE::Interop::IDataObject ^ pObject, System::String ^ szStringMapName, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsStringMap ^ % ppStringMap);
public:
int ReadStringMap(Microsoft::VisualStudio::OLE::Interop::IDataObject ^ pObject, Platform::String ^ szStringMapName, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsStringMap ^ & ppStringMap);
int ReadStringMap(Microsoft::VisualStudio::OLE::Interop::IDataObject const & pObject, std::wstring const & szStringMapName, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsStringMap const & & ppStringMap);
public int ReadStringMap (Microsoft.VisualStudio.OLE.Interop.IDataObject pObject, string szStringMapName, out Microsoft.VisualStudio.Shell.Interop.IVsStringMap ppStringMap);
abstract member ReadStringMap : Microsoft.VisualStudio.OLE.Interop.IDataObject * string * IVsStringMap -> int
Public Function ReadStringMap (pObject As IDataObject, szStringMapName As String, ByRef ppStringMap As IVsStringMap) As Integer
Parameters
- pObject
- IDataObject
[in] An IDataObject that contains string maps.
- szStringMapName
- String
[in] The name of the string map to read.
- ppStringMap
- IVsStringMap
[out] The IVsStringMap that was read.
Returns
Returns S_OK if the string map was read or E_VS_MAPMISSING (0x80042001) if the data object does not contain a string map with the given name.