ClassificationTypeDefinition Class
Visual Studio 2015
Describes a data-only export for declaring classification types.
Assembly: Microsoft.VisualStudio.Text.Logic (in Microsoft.VisualStudio.Text.Logic.dll)
| Name | Description | |
|---|---|---|
![]() | ClassificationTypeDefinition() | Initializes a new instance of ClassificationTypeDefinition. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | (Inherited from Object.) |
![]() | GetHashCode() | (Inherited from Object.) |
![]() | GetType() | (Inherited from Object.) |
![]() | ToString() | (Inherited from Object.) |
Because you cannot subclass this type, you can use the [Export] attribute with no type.
For more information about classification, see the section "Extending Classification Types and Classification Formats" in Editor Extension Points.
internal sealed class Components
{
[Export]
[Name("keyword")] //required
[BaseDefinition("text")] //zero or more BaseDefinitions are allowed
internal ClassificationTypeDefinition keywordDefinition;
{
...
}
}
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Show:
