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

36 lines
929 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 line layout caching strategy used by a <see cref="Scintilla" /> control.
/// </summary>
public enum LayoutCacheMode
{
/// <summary>
/// No line layout data is cached.
/// </summary>
None = NativeMethods.SC_CACHE_NONE,
/// <summary>
/// Line layout data of the current caret line is cached.
/// </summary>
Caret = NativeMethods.SC_CACHE_CARET,
/// <summary>
/// Line layout data for all visible lines and the current caret line are cached.
/// </summary>
Page = NativeMethods.SC_CACHE_PAGE,
/// <summary>
/// Line layout data for the entire document is cached.
/// </summary>
Document = NativeMethods.SC_CACHE_DOCUMENT,
}
}