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

IOverviewMarkTag.cs « Tags « TextUI « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73adafc6dce35cec38d1d193c079df35e5a05cfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  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.Tagging
{
    /// <summary>
    /// Provides the information needed to render a mark in the overview margin.
    /// </summary>
    public interface IOverviewMarkTag : ITag
    {
        /// <summary>
        /// Gets the name of the EditorFormatDefinition whose background color is used to draw the mark.
        /// </summary>
        string MarkKindName { get; }
    }
}