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

ViewRelativePosition.cs « Editor « TextUI « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41f2861e79e5759dd423083945c624fcd872c4c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
//  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.Editor
{
    /// <summary>
    /// Defines the meaning of the verticalOffset parameter in the <see cref="ITextView"/>.DisplayTextLineContaining(...).
    /// </summary>
    public enum ViewRelativePosition
    {
        /// <summary>
        /// The offset with respect to the top of the view.
        /// </summary>
        Top,
        /// <summary>
        /// The offset with respect to the bottom of the view.
        /// </summary>
        Bottom      
    }
}