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

ContainerElementStyle.cs « ViewElementFactories « ToolTipService « Adornments « TextUI « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9f8b22ce1b3d75613eb2d814e074dcec087fd1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Microsoft.VisualStudio.Text.Adornments
{
    /// <summary>
    /// The layout style for a <see cref="ContainerElement"/>.
    /// </summary>
    public enum ContainerElementStyle
    {
        /// <summary>
        /// Contents are end-to-end, and wrapped when the control becomes too wide.
        /// </summary>
        Wrapped,

        /// <summary>
        /// Contents are stacked vertically.
        /// </summary>
        Stacked
    }
}