#region Using Directives
using System;
#endregion Using Directives
namespace ScintillaNET
{
///
/// Specifies the visibility and appearance of annotations in a control.
///
public enum AnnotationsVisibility
{
///
/// Annotations are not displayed.
///
Hidden = NativeMethods.ANNOTATION_HIDDEN,
///
/// Annotations are drawn left-justified with no adorment.
///
Standard = NativeMethods.ANNOTATION_STANDARD,
///
/// Annotations are indented to match the text and are surrounded by a box.
///
Boxed = NativeMethods.ANNOTATION_BOXED
}
}