#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
///
/// Specifies the line layout caching strategy used by a control.
///
public enum LayoutCacheMode
{
///
/// No line layout data is cached.
///
None = NativeMethods.SC_CACHE_NONE,
///
/// Line layout data of the current caret line is cached.
///
Caret = NativeMethods.SC_CACHE_CARET,
///
/// Line layout data for all visible lines and the current caret line are cached.
///
Page = NativeMethods.SC_CACHE_PAGE,
///
/// Line layout data for the entire document is cached.
///
Document = NativeMethods.SC_CACHE_DOCUMENT,
}
}