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

ITextVersion2.cs « Model « TextData « Def « Text « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75dedc823b0d2e3e2697af8658a8d90877cd6756 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
//  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
{
    using System;

    /// <summary>
    /// Describes a version of an <see cref="ITextBuffer"/>. Each application of an <see cref="ITextEdit"/> to a text buffer
    /// generates a new <see cref="ITextVersion"/>.
    /// </summary>
    /// <remarks>Any <see cref="ITextVersion"/> will be upcastable to an <see cref="ITextVersion2"/>.</remarks>
    public interface ITextVersion2 : ITextVersion
    {
        ITextImageVersion ImageVersion { get; }
    }
}