NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

PropertyTabAttribute Constructor (Type[], PropertyTabScope[])

Basic constructor that creates a property tab attribute that will create a tab of the specified type.

[Visual Basic]
Overloads Public Sub New( _
   ByVal tabClasses() As Type, _
   ByVal tabScopes() As PropertyTabScope _
)
[C#]
public PropertyTabAttribute(
   Type[] tabClasses,
   PropertyTabScope[] tabScopes
);
[C++]
public: PropertyTabAttribute(
   Type* tabClasses[],
   PropertyTabScope* tabScopes[]
);
[JScript]
public function PropertyTabAttribute(
   tabClasses : Type[],
   tabScopes : PropertyTabScope[]
);

Parameters

tabClasses
The types of tabs this attriute will create.
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.

See Also

PropertyTabAttribute Class | PropertyTabAttribute Members | System.ComponentModel.Design Namespace | PropertyTabAttribute Constructor Overload List