pascalabcnet/Utils/NodesGeneratorNew/Scintilla/Sources/ScintillaNET/LineWrappingVisualFlagsLocations.cs

32 lines
910 B
C#
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
/// <summary>
/// Specifies the locations of line wrapping visual glyphs in a <see cref="Scintilla" /> control.
/// </summary>
[Flags]
public enum LineWrappingVisualFlagsLocations
{
/// <summary>
/// Line wrapping glyphs are drawn near the control border.
/// </summary>
Default = NativeMethods.SC_WRAPVISUALFLAGLOC_DEFAULT,
/// <summary>
/// Line wrapping glyphs are drawn at the end of wrapped lines near the text.
/// </summary>
EndByText = NativeMethods.SC_WRAPVISUALFLAGLOC_END_BY_TEXT,
/// <summary>
/// Line wrapping glyphs are drawn at the start of wrapped lines near the text.
/// </summary>
StartByText = NativeMethods.SC_WRAPVISUALFLAGLOC_START_BY_TEXT,
}
}