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

ImageTags.cs « Def « Imaging « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e2163dc464ed0e4658017a527e0df215a87bd07 (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.
//

using System;

namespace Microsoft.VisualStudio.Core.Imaging
{
    [Flags]
    public enum ImageTags
    {
        None = 0 << 0,
        Dark = 1 << 0,
        Disabled = 1 << 1,
        Error = 1 << 2,
        Hover = 1 << 3,
        Pressed = 1 << 4,
        Selected = 1 << 5,
        Template = 1 << 6
    }
}