IVsToolbox6 Interface
Additional methods used to manage the Toolbox.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.11.0 (in Microsoft.VisualStudio.Shell.Interop.11.0.dll)
Syntax
'Declaration
<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)> _
<GuidAttribute("A403B9B7-34C3-4EEF-B40E-5AC270277D84")> _
Public Interface IVsToolbox6
[InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)]
[GuidAttribute("A403B9B7-34C3-4EEF-B40E-5AC270277D84")]
public interface IVsToolbox6
[InterfaceTypeAttribute(ComInterfaceType::InterfaceIsIUnknown)]
[GuidAttribute(L"A403B9B7-34C3-4EEF-B40E-5AC270277D84")]
public interface class IVsToolbox6
[<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)>]
[<GuidAttribute("A403B9B7-34C3-4EEF-B40E-5AC270277D84")>]
type IVsToolbox6 = interface end
public interface IVsToolbox6
The IVsToolbox6 type exposes the following members.
Properties
Name | Description | |
---|---|---|
IsFiltered | Gets or sets whether the toolbox is currently filtering items against the active designer and project. This is the inverse of the "Show All" toggle in the context menu. |
Top
Methods
Name | Description | |
---|---|---|
AddItemToDesigner | Adds the specified item to the active designer as if it was double-clicked in the toolbox. | |
CopyToClipboard | Copies the item from the toolbox onto the clipboard. | |
EnumTabIDs | Retrieves an enumeration of the identifiers for the tabs on the toolbox. | |
GetAsyncState | Indicate what (if any) asynchronous operations are pending or in progress. | |
GetBitmapBackground | Retrieves the transparent background color of the specified toolbox item. | |
GetUnresolvedItemName | Retrieves the "unresolved" name of the specified item. | |
GetUnresolvedTabName | Retrieves the "unresolved" name of the specified tab. | |
IsItemFilteredInvisible | Indicates whether the specified item is currently invisible due to a search filter. | |
IsTabVisible | Indicates whether the specified tab is visible (for example, has any enabled items) in the current context. | |
MoveItem | Moves the specified toolbox item to a position just before the specified "insertion point" item. If the insertion point is on a different tab, the toolbox item will be moved to that tab. | |
MoveItemToTab | Moves a toolbox item to the end of the specified tab. | |
MoveTab | Moves the specified tab before the tab whose identifier is specified by szInsertionPoint. | |
PasteFromClipboard | Pastes the current clipboard contents into the toolbox at the end of the specified tab. | |
RemovePackageContent | Removes all items created by the specified package. Groups created by that package are also removed unless they contain items not created by that package. | |
RenameItem | Renames the specified item. | |
RenameTab | Renames the specified tab. | |
ResetToolbox | Resets the toolbox to its default state, discarding all user customizations. |
Top