ClassificationTypeAttribute::ClassificationTypeNames Property

 

Gets or sets the name of this classification type.

Namespace:   Microsoft.VisualStudio.Text.Classification
Assembly:  Microsoft.VisualStudio.Text.Logic (in Microsoft.VisualStudio.Text.Logic.dll)

public:
property String^ ClassificationTypeNames {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The name of the type.

Exception Condition
ArgumentNullException

The value is null.

ArgumentOutOfRangeException

The value is an empty string.

The name must be unique among all other classification types. It cannot be null or an empty string. All classification type names are case-sensitive.

Return to top
Show: