ProvideOptionPageAttribute Constructors

Definition

Overloads

ProvideOptionPageAttribute(Type, String, String, Int16, Int16, Boolean, Int32)

Instantiates a new instance of ProvideOptionPageAttribute.

ProvideOptionPageAttribute(Type, String, String, Int16, Int16, Boolean, String)

Instantiates a new instance of ProvideOptionPageAttribute.

ProvideOptionPageAttribute(Type, String, String, Int16, Int16, Boolean, String[])

Instantiates a new instance of ProvideOptionPageAttribute.

ProvideOptionPageAttribute(Type, String, String, Int16, Int16, Boolean, Int32)

Instantiates a new instance of ProvideOptionPageAttribute.

public:
 ProvideOptionPageAttribute(Type ^ pageType, System::String ^ categoryName, System::String ^ pageName, short categoryResourceID, short pageNameResourceID, bool supportsAutomation, int keywordListResourceId);
public:
 ProvideOptionPageAttribute(Platform::Type ^ pageType, Platform::String ^ categoryName, Platform::String ^ pageName, short categoryResourceID, short pageNameResourceID, bool supportsAutomation, int keywordListResourceId);
public ProvideOptionPageAttribute (Type pageType, string categoryName, string pageName, short categoryResourceID, short pageNameResourceID, bool supportsAutomation, int keywordListResourceId);
new Microsoft.VisualStudio.Shell.ProvideOptionPageAttribute : Type * string * string * int16 * int16 * bool * int -> Microsoft.VisualStudio.Shell.ProvideOptionPageAttribute
Public Sub New (pageType As Type, categoryName As String, pageName As String, categoryResourceID As Short, pageNameResourceID As Short, supportsAutomation As Boolean, keywordListResourceId As Integer)

Parameters

pageType
Type

The Type of the class implementing the Tools Options page.

categoryName
String

The canonical nonlocalized name of the Tools Options page category.

pageName
String

The canonical nonlocalized name of the Tools Options page subcategory.

categoryResourceID
Int16

The localized resource ID of the Tools Options page category.

pageNameResourceID
Int16

The localized resource ID of the Tools Options page subcategory.

supportsAutomation
Boolean

If true, the Tools Options page can be accessed through the Visual Studio automation mechanism.

keywordListResourceId
Int32

The resource ID of the list of keywords.

Applies to

ProvideOptionPageAttribute(Type, String, String, Int16, Int16, Boolean, String)

Instantiates a new instance of ProvideOptionPageAttribute.

public:
 ProvideOptionPageAttribute(Type ^ pageType, System::String ^ categoryName, System::String ^ pageName, short categoryResourceID, short pageNameResourceID, bool supportsAutomation, System::String ^ keywordListResourceName);
public:
 ProvideOptionPageAttribute(Platform::Type ^ pageType, Platform::String ^ categoryName, Platform::String ^ pageName, short categoryResourceID, short pageNameResourceID, bool supportsAutomation, Platform::String ^ keywordListResourceName);
public ProvideOptionPageAttribute (Type pageType, string categoryName, string pageName, short categoryResourceID, short pageNameResourceID, bool supportsAutomation, string keywordListResourceName);
new Microsoft.VisualStudio.Shell.ProvideOptionPageAttribute : Type * string * string * int16 * int16 * bool * string -> Microsoft.VisualStudio.Shell.ProvideOptionPageAttribute
Public Sub New (pageType As Type, categoryName As String, pageName As String, categoryResourceID As Short, pageNameResourceID As Short, supportsAutomation As Boolean, keywordListResourceName As String)

Parameters

pageType
Type

The Type of the class implementing the Tools Options page.

categoryName
String

The canonical nonlocalized name of the Tools Options page category.

pageName
String

The canonical nonlocalized name of the Tools Options page subcategory.

categoryResourceID
Int16

The localized resource ID of the Tools Options page category.

pageNameResourceID
Int16

The localized resource ID of the Tools Options page subcategory.

supportsAutomation
Boolean

If true, the Tools Options page can be accessed through the Visual Studio automation mechanism.

keywordListResourceName
String

The resource ID of the list of keywords.

Applies to

ProvideOptionPageAttribute(Type, String, String, Int16, Int16, Boolean, String[])

Instantiates a new instance of ProvideOptionPageAttribute.

public:
 ProvideOptionPageAttribute(Type ^ pageType, System::String ^ categoryName, System::String ^ pageName, short categoryResourceID, short pageNameResourceID, bool supportsAutomation, cli::array <System::String ^> ^ keywords);
public:
 ProvideOptionPageAttribute(Platform::Type ^ pageType, Platform::String ^ categoryName, Platform::String ^ pageName, short categoryResourceID, short pageNameResourceID, bool supportsAutomation, Platform::Array <Platform::String ^> ^ keywords);
[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)]
public ProvideOptionPageAttribute (Type pageType, string categoryName, string pageName, short categoryResourceID, short pageNameResourceID, bool supportsAutomation, string[] keywords);
[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)>]
new Microsoft.VisualStudio.Shell.ProvideOptionPageAttribute : Type * string * string * int16 * int16 * bool * string[] -> Microsoft.VisualStudio.Shell.ProvideOptionPageAttribute
Public Sub New (pageType As Type, categoryName As String, pageName As String, categoryResourceID As Short, pageNameResourceID As Short, supportsAutomation As Boolean, keywords As String())

Parameters

pageType
Type

The Type of the class implementing the Tools Options page.

categoryName
String

The canonical nonlocalized name of the Tools Options page category.

pageName
String

The canonical nonlocalized name of the Tools Options page subcategory.

categoryResourceID
Int16

The localized resource ID of the Tools Options page category.

pageNameResourceID
Int16

The localized resource ID of the Tools Options page subcategory.

supportsAutomation
Boolean

If true, the Tools Options page can be accessed through the Visual Studio automation mechanism.

keywords
String[]

The keywords.

Attributes

Applies to