IVsUIDynamicCollection Interface
Represents a modifiable collection in the Visual Studio user interface.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.10.0 (in Microsoft.VisualStudio.Shell.Interop.10.0.dll)
Syntax
'Declaration
<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)> _
<GuidAttribute("6D155041-B4B8-4121-8D74-841E5DA4373E")> _
Public Interface IVsUIDynamicCollection _
Inherits IVsUICollection
[InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)]
[GuidAttribute("6D155041-B4B8-4121-8D74-841E5DA4373E")]
public interface IVsUIDynamicCollection : IVsUICollection
[InterfaceTypeAttribute(ComInterfaceType::InterfaceIsIUnknown)]
[GuidAttribute(L"6D155041-B4B8-4121-8D74-841E5DA4373E")]
public interface class IVsUIDynamicCollection : IVsUICollection
[<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)>]
[<GuidAttribute("6D155041-B4B8-4121-8D74-841E5DA4373E")>]
type IVsUIDynamicCollection =
interface
interface IVsUICollection
end
public interface IVsUIDynamicCollection extends IVsUICollection
The IVsUIDynamicCollection type exposes the following members.
Methods
Name | Description | |
---|---|---|
AddItem | Adds a data source to the collection. | |
AdviseCollectionChangeEvents | Registers an event sink for collection change notifications. | |
ClearItems | Clears the collection. | |
Close | Closes the collection. | |
EnumVerbs | Returns a list of the verbs available for the collection. | |
get_Count | Returns the number of items in the collection. | |
GetItem | Returns an item from the collection. | |
InsertCollection | Adds a collection to this collection. | |
InsertItem | Adds an item to the collection. | |
Invoke | Invokes a verb on the collection. | |
RemoveItem | Remove an item from the collection. | |
ReplaceItem | Replaces an item in the colleciton. | |
UnadviseCollectionChangeEvents | Stops sending notifications of changes tot eh collection. |
Top