Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ILayeredClassificationType.cs « Classification « TextLogic « Def « Text « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f8b29df13692433e553ed7039c082c93122771c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//
namespace Microsoft.VisualStudio.Text.Classification
{
    /// <summary>
    /// A specialization of <see cref="IClassificationType"/> that includes a 'layer'
    /// designation.
    /// </summary>
    /// <remarks>
    /// <see cref="ILayeredClassificationType"/> can be used instead of <see cref="IClassificationType"/>
    /// to enable one component's classifications to categorically supersede another's classifications.
    /// </remarks>
    public interface ILayeredClassificationType : IClassificationType
    {
        /// <summary>
        /// The classification layer to which this classification belongs.
        /// </summary>
        ClassificationLayer Layer { get; }
    }
}