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

ChangeTypes.cs « TextModel « TextLogic « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d1c9b2c9a478e2e75c24957839820b754a8e0931 (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
// Copyright (c) Microsoft Corporation
// All rights reserved

namespace Microsoft.VisualStudio.Text.Document
{
    /// <summary>
    /// Specifies the types of changes for modified text.
    /// </summary>
    [System.Flags]
    public enum ChangeTypes
    {
        /// <summary>
        /// No change types are set.
        /// </summary>
        None = 0x00,

        /// <summary>
        /// The change occurred after the document was opened.
        /// </summary>
        ChangedSinceOpened = 0x01,

        /// <summary>
        /// The change occurred after the document was saved.
        /// </summary>
        ChangedSinceSaved = 0x02
    }
}