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

IncrementalSearchDirection.cs « Find « TextUI « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d11499eadd6d5beeb8ee2e7d29808502ba8b1036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  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.IncrementalSearch
{
    /// <summary>
    /// Determines the direction of the incremental search.
    /// See <see cref="IIncrementalSearch"/> for more information.
    /// </summary>
    public enum IncrementalSearchDirection
    {
        /// <summary>
        /// Forward search.
        /// </summary>
        Forward,

        /// <summary>
        ///Backward search.
        /// </summary>
        Backward
    }
}