Basic constructor that creates a property tab attribute that will create a tab of the specified type.
[Visual Basic]
Overloads Public Sub New( _
ByVal tabClassNames() As String, _ ByVal tabScopes() As PropertyTabScope _)[C#]
public PropertyTabAttribute(
string[] tabClassNames, PropertyTabScope[] tabScopes);[C++]
public: PropertyTabAttribute(
String* tabClassNames[], PropertyTabScope* tabScopes[]);[JScript]
public function PropertyTabAttribute(
tabClassNames : String[],tabScopes : PropertyTabScope[]);
Parameters
tabClassNames
The fully qualified name types of tabs this attriute will create. An assembly or module name can also be specified by appending a comma and then the module name. Example: "MyNameSpace.MyPropertyTab,MyPropertyTab.dll"
tabScopes
The scope of this tab. If the scope is PropertyTabScope.Component, it will only be shown for the components with the corrsponding PropertyTabAttribute. If it is PropertyTabScope.Document, it will be shown for all components on the document.