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

IGoToLinePresenter.cs « GoToLine « Extras « TextUICocoa « Def « Text « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ccf427e1ed71ffbb734189302e4c5c8128dab9e0 (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.Extras.GoToLine
{
    /// <summary>
    /// Encapsulates the Go To Line UI in a similar fashion to
    /// <see cref="Find.IFindPresenter"/>
    /// </summary>
    public interface IGoToLinePresenter
    {
        void Show();
        void Hide();
        bool NavigateToLine(int lineNumber);
    }
}