IVsDataObjectStringMapManager Interface
Enables storage of name/value pairs in an IDataObject. Multiple string maps with different names can exist in a single data object. You can get this interface by using SVsDataObjectStringMapManager.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assemblies: Microsoft.VisualStudio (in Microsoft.VisualStudio.dll)
Microsoft.VisualStudio.Shell.Interop.10.0 (in Microsoft.VisualStudio.Shell.Interop.10.0.dll)
Syntax
'Declaration
<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)> _
<GuidAttribute("662AFCEC-AD0C-4F59-97E2-F61E0C673514")> _
Public Interface IVsDataObjectStringMapManager
[InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)]
[GuidAttribute("662AFCEC-AD0C-4F59-97E2-F61E0C673514")]
public interface IVsDataObjectStringMapManager
[InterfaceTypeAttribute(ComInterfaceType::InterfaceIsIUnknown)]
[GuidAttribute(L"662AFCEC-AD0C-4F59-97E2-F61E0C673514")]
public interface class IVsDataObjectStringMapManager
[<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)>]
[<GuidAttribute("662AFCEC-AD0C-4F59-97E2-F61E0C673514")>]
type IVsDataObjectStringMapManager = interface end
public interface IVsDataObjectStringMapManager
The IVsDataObjectStringMapManager type exposes the following members.
Methods
Name | Description | |
---|---|---|
_VtblGap1_1 | ||
AdviseChanges | Registers a listener for the event fired when the string map changes. | |
CreateStringMap | Creates a new string map. | |
ReadStringMap | Reads the named string map from the specified data object. | |
UnadviseChanges | Removes the listener. | |
WriteStringMap | Writes information to a string map. |
Top