IVsToolsOptions Interface

Manages a Tools Options dialog box. The environment implements this interface.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

Syntax

'Declaration
<GuidAttribute("AE31D40E-CD7A-45CB-8DEF-5EA0E44C688A")> _
<InterfaceTypeAttribute()> _
Public Interface IVsToolsOptions
[GuidAttribute("AE31D40E-CD7A-45CB-8DEF-5EA0E44C688A")]
[InterfaceTypeAttribute()]
public interface IVsToolsOptions
[GuidAttribute(L"AE31D40E-CD7A-45CB-8DEF-5EA0E44C688A")]
[InterfaceTypeAttribute()]
public interface class IVsToolsOptions
[<GuidAttribute("AE31D40E-CD7A-45CB-8DEF-5EA0E44C688A")>]
[<InterfaceTypeAttribute()>]
type IVsToolsOptions =  interface end
public interface IVsToolsOptions

The IVsToolsOptions type exposes the following members.

Methods

  Name Description
Public method IsToolsOptionsOpen Determines if the Tools Options dialog box is open.
Public method RefreshPageVisibility Refreshes the visibility of the Tools Options dialog box.

Top

Remarks

The Visual Studio integrated development environment (IDE) Options dialog box consists of a tree view on the left and a properties page on the right. To open the Options dialog box, on the Tools menu, click Options. If you choose to modify the tools options properties page from your VSPackage, these methods will assist you.

Visual Studio's Source Code Control Services, for example, implements a drop-down box on the properties page from which the user can select a source control provider, and the SCC code calls RefreshPageVisibility to make its drop-down box visible.

See Also

Reference

Microsoft.VisualStudio.Shell.Interop Namespace