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

IElisionTag.cs « TextLogic « Internal « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 154e5da047cd1f52c1c45382b2372285ea04fca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//
// This file contain internal APIs that are subject to change without notice.
// Use at your own risk.
//
namespace Microsoft.VisualStudio.Text.Tagging
{
    using Microsoft.VisualStudio.Text.Editor;

    /// <summary>
    /// Tag indicating spans of text to be excluded from a view.
    /// </summary>
    /// <remarks>
    /// <para>
    /// IViewTaggerProviders are querried by the editor implementation with this tag type for views having
    /// the <see cref="PredefinedTextViewRoles.Structured"/> view role.
    /// </para>
    /// <para>
    /// These tags cause text to be hidden but do not result in any outlining UI.
    /// IOutliningRegionTags are used to provide data to the outlining manager.
    /// </para>
    /// </remarks>
    public interface IElisionTag : ITag
    {
    }
}