<?xml version="1.0"?>
<doc>
<assembly>
<name>ScintillaNET</name>
</assembly>
<members>
<member name="T:ScintillaNET.Annotation">
<summary>
Visibility and location of annotations in a <see cref="T:ScintillaNET.Scintilla" /> control
</summary>
</member>
<member name="F:ScintillaNET.Annotation.Hidden">
<summary>
Annotations are not displayed. This is the default.
</summary>
</member>
<member name="F:ScintillaNET.Annotation.Standard">
<summary>
Annotations are drawn left justified with no adornment.
</summary>
</member>
<member name="F:ScintillaNET.Annotation.Boxed">
<summary>
Annotations are indented to match the text and are surrounded by a box.
</summary>
</member>
<member name="F:ScintillaNET.Annotation.Indented">
<summary>
Annotations are indented to match the text.
</summary>
</member>
<member name="T:ScintillaNET.AutoCSelectionEventArgs">
<summary>
Provides data for the <see cref="E:ScintillaNET.Scintilla.AutoCSelection" /> event.
</summary>
</member>
<member name="P:ScintillaNET.AutoCSelectionEventArgs.Char">
<summary>
Gets the fillup character that caused the completion.
</summary>
<returns>The fillup character used to cause the completion; otherwise, 0.</returns>
<remarks>Only a <see cref="P:ScintillaNET.AutoCSelectionEventArgs.ListCompletionMethod" /> of <see cref="F:ScintillaNET.ListCompletionMethod.FillUp" /> will return a non-zero character.</remarks>
<seealso cref="M:ScintillaNET.Scintilla.AutoCSetFillUps(System.String)" />
</member>
<member name="P:ScintillaNET.AutoCSelectionEventArgs.ListCompletionMethod">
<summary>
Gets a value indicating how the completion occurred.
</summary>
<returns>One of the <see cref="T:ScintillaNET.ListCompletionMethod" /> enumeration values.</returns>
</member>
<member name="P:ScintillaNET.AutoCSelectionEventArgs.Position">
<summary>
Gets the start position of the word being completed.
</summary>
<returns>The zero-based document position of the word being completed.</returns>
</member>
<member name="P:ScintillaNET.AutoCSelectionEventArgs.Text">
<summary>
Gets the text of the selected autocompletion item.
</summary>
<returns>The selected autocompletion item text.</returns>
</member>
<member name="M:ScintillaNET.AutoCSelectionEventArgs.#ctor(ScintillaNET.Scintilla,System.Int32,System.IntPtr,System.Int32,ScintillaNET.ListCompletionMethod)">
<summary>
Initializes a new instance of the <see cref="T:ScintillaNET.AutoCSelectionEventArgs" /> class.
</summary>
<param name="scintilla">The <see cref="T:ScintillaNET.Scintilla" /> control that generated this event.</param>
<param name="bytePosition">The zero-based byte position within the document of the word being completed.</param>
<param name="text">A pointer to the selected autocompletion text.</param>
<param name="ch">The character that caused the completion.</param>
<param name="listCompletionMethod">A value indicating the way in which the completion occurred.</param>
</member>
<member name="T:ScintillaNET.AutomaticFold">
<summary>
Configuration options for automatic code folding.
</summary>
<remarks>This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.</remarks>
</member>
<member name="F:ScintillaNET.AutomaticFold.None">
<summary>
Automatic folding is disabled. This is the default.
</summary>
</member>
<member name="F:ScintillaNET.AutomaticFold.Show">
<summary>
Automatically show lines as needed. The <see cref="E:ScintillaNET.Scintilla.NeedShown" /> event is not raised when this value is used.
</summary>
</member>
<member name="F:ScintillaNET.AutomaticFold.Click">
<summary>
Handle clicks in fold margin automatically. The <see cref="E:ScintillaNET.Scintilla.MarginClick" /> event is not raised for folding margins when this value is used.
</summary>
</member>
<member name="F:ScintillaNET.AutomaticFold.Change">
<summary>
Show lines as needed when the fold structure is changed.
</summary>
</member>
<member name="T:ScintillaNET.BeforeModificationEventArgs">
<summary>
Provides data for the <see cref="E:ScintillaNET.Scintilla.BeforeInsert" /> and <see cref="E:ScintillaNET.Scintilla.BeforeDelete" /> events.
</summary>
</member>
<member name="P:ScintillaNET.BeforeModificationEventArgs.Position">
<summary>
Gets the zero-based document position where the modification will occur.
</summary>
<returns>The zero-based character position within the document where text will be inserted or deleted.</returns>
</member>
<member name="P:ScintillaNET.BeforeModificationEventArgs.Source">
<summary>
Gets the source of the modification.
</summary>
<returns>One of the <see cref="T:ScintillaNET.ModificationSource" /> enum values.</returns>
</member>
<member name="P:ScintillaNET.BeforeModificationEventArgs.Text">
<summary>
Gets the text being inserted or deleted.
</summary>
<returns>
The text about to be inserted or deleted, or null when the the source of the modification is an undo/redo operation.
</returns>
<remarks>
This property will return null when <see cref="P:ScintillaNET.BeforeModificationEventArgs.Source" /> is <see cref="F:ScintillaNET.ModificationSource.Undo" /> or <see cref="F:ScintillaNET.ModificationSource.Redo" />.
</remarks>
</member>
<member name="M:ScintillaNET.BeforeModificationEventArgs.#ctor(ScintillaNET.Scintilla,ScintillaNET.ModificationSource,System.Int32,System.Int32,System.IntPtr)">
<summary>
Initializes a new instance of the <see cref="T:ScintillaNET.BeforeModificationEventArgs" /> class.
</summary>
<param name="scintilla">The <see cref="T:ScintillaNET.Scintilla" /> control that generated this event.</param>
<param name="source">The source of the modification.</param>
<param name="bytePosition">The zero-based byte position within the document where text is being modified.</param>
<param name="byteLength">The length in bytes of the text being modified.</param>
<param name="text">A pointer to the text being inserted.</param>
</member>
<member name="T:ScintillaNET.CaretStyle">
<summary>
The caret visual style.
</summary>
</member>
<member name="F:ScintillaNET.CaretStyle.Invisible">
<summary>
The caret is not displayed.
</summary>
</member>
<member name="F:ScintillaNET.CaretStyle.Line">
<summary>
The caret is drawn as a vertical line.
</summary>
</member>
<member name="F:ScintillaNET.CaretStyle.Block">
<summary>