Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Represents a modifiable collection in the Visual Studio user interface.
Namespace:  Microsoft.VisualStudio.Shell.Interop
Assemblies:   Microsoft.VisualStudio.Shell.Interop.10.0 (in Microsoft.VisualStudio.Shell.Interop.10.0.dll)
  Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.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 | |
|---|---|---|
| .gif) | AddItem | Adds a data source to the collection. | 
| .gif) | AdviseCollectionChangeEvents | Registers an event sink for collection change notifications. | 
| .gif) | ClearItems | Clears the collection. | 
| .gif) | Close | Closes the collection. | 
| .gif) | EnumVerbs | Returns a list of the verbs available for the collection. | 
| .gif) | get_Count | Returns the number of items in the collection. | 
| .gif) | GetItem | Returns an item from the collection. | 
| .gif) | InsertCollection | Adds a collection to this collection. | 
| .gif) | InsertItem | Adds an item to the collection. | 
| .gif) | Invoke | Invokes a verb on the collection. | 
| .gif) | RemoveItem | Remove an item from the collection. | 
| .gif) | ReplaceItem | Replaces an item in the colleciton. | 
| .gif) | UnadviseCollectionChangeEvents | Stops sending notifications of changes tot eh collection. | 
Top