<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>ICSharpCode.AvalonEdit</name>
</assembly>
<members>
<member name="T:ICSharpCode.AvalonEdit.AvalonEditCommands">
<summary>
Custom commands for AvalonEdit.
</summary>
</member>
<member name="F:ICSharpCode.AvalonEdit.AvalonEditCommands.ConvertLeadingSpacesToTabs">
<summary>
Converts leading spaces to tabs in the selected lines (or the whole document if the selection is empty).
</summary>
</member>
<member name="F:ICSharpCode.AvalonEdit.AvalonEditCommands.ConvertLeadingTabsToSpaces">
<summary>
Converts leading tabs to spaces in the selected lines (or the whole document if the selection is empty).
</summary>
</member>
<member name="F:ICSharpCode.AvalonEdit.AvalonEditCommands.ConvertSpacesToTabs">
<summary>
Converts spaces to tabs in the selected text.
</summary>
</member>
<member name="F:ICSharpCode.AvalonEdit.AvalonEditCommands.ConvertTabsToSpaces">
<summary>
Converts tabs to spaces in the selected text.
</summary>
</member>
<member name="F:ICSharpCode.AvalonEdit.AvalonEditCommands.ConvertToLowercase">
<summary>
Converts the selected text to lower case.
</summary>
</member>
<member name="F:ICSharpCode.AvalonEdit.AvalonEditCommands.ConvertToTitleCase">
<summary>
Converts the selected text to title case.
</summary>
</member>
<member name="F:ICSharpCode.AvalonEdit.AvalonEditCommands.ConvertToUppercase">
<summary>
Converts the selected text to upper case.
</summary>
</member>
<member name="F:ICSharpCode.AvalonEdit.AvalonEditCommands.DeleteLine">
<summary>
Deletes the current line.
The default shortcut is Ctrl+D.
</summary>
</member>
<member name="F:ICSharpCode.AvalonEdit.AvalonEditCommands.IndentSelection">
<summary>
Runs the IIndentationStrategy on the selected lines (or the whole document if the selection is empty).
</summary>
</member>
<member name="F:ICSharpCode.AvalonEdit.AvalonEditCommands.InvertCase">
<summary>
Inverts the case of the selected text.
</summary>
</member>
<member name="F:ICSharpCode.AvalonEdit.AvalonEditCommands.RemoveLeadingWhitespace">
<summary>
Removes leading whitespace from the selected lines (or the whole document if the selection is empty).
</summary>
</member>
<member name="F:ICSharpCode.AvalonEdit.AvalonEditCommands.RemoveTrailingWhitespace">
<summary>
Removes trailing whitespace from the selected lines (or the whole document if the selection is empty).
</summary>
</member>
<member name="T:ICSharpCode.AvalonEdit.ITextEditorComponent">
<summary>
Represents a text editor control (<see cref="T:ICSharpCode.AvalonEdit.TextEditor" />, <see cref="T:ICSharpCode.AvalonEdit.Editing.TextArea" />
or <see cref="T:ICSharpCode.AvalonEdit.Rendering.TextView" />).
</summary>
</member>
<member name="P:ICSharpCode.AvalonEdit.ITextEditorComponent.Document">
<summary>
Gets the document being edited.
</summary>
</member>
<member name="E:ICSharpCode.AvalonEdit.ITextEditorComponent.DocumentChanged">
<summary>
Occurs when the Document property changes (when the text editor is connected to another
document - not when the document content changes).
</summary>
</member>
<member name="E:ICSharpCode.AvalonEdit.ITextEditorComponent.OptionChanged">
<summary>
Occurs when the Options property changes, or when an option inside the current option list
changes.
</summary>
</member>
<member name="P:ICSharpCode.AvalonEdit.ITextEditorComponent.Options">
<summary>
Gets the options of the text editor.
</summary>
</member>
<member name="T:ICSharpCode.AvalonEdit.TextEditor">
<summary>
The text editor control.
Contains a scrollable TextArea.
</summary>
</member>
<member name="M:ICSharpCode.AvalonEdit.TextEditor.#ctor">
<summary>
Creates a new TextEditor instance.
</summary>
</member>
<member name="M:ICSharpCode.AvalonEdit.TextEditor.#ctor(ICSharpCode.AvalonEdit.Editing.TextArea)">
<summary>
Creates a new TextEditor instance.
</summary>
</member>
<member name="M:ICSharpCode.AvalonEdit.TextEditor.AppendText(System.String)">
<summary>
Appends text to the end of the document.
</summary>
</member>
<member name="M:ICSharpCode.AvalonEdit.TextEditor.BeginChange">
<summary>
Begins a group of document changes.
</summary>
</member>
<member name="P:ICSharpCode.AvalonEdit.TextEditor.CanRedo">
<summary>
Gets if the most recent undone command can be redone.
</summary>
</member>
<member name="P:ICSharpCode.AvalonEdit.TextEditor.CanUndo">
<summary>
Gets if the most recent command can be undone.
</summary>
</member>
<member name="P:ICSharpCode.AvalonEdit.TextEditor.CaretOffset">
<summary>
Gets/sets the caret position.
</summary>
</member>
<member name="M:ICSharpCode.AvalonEdit.TextEditor.Clear">
<summary>
Clears the text.
</summary>
</member>
<member name="M:ICSharpCode.AvalonEdit.TextEditor.Copy">
<summary>
Copies the current selection to the clipboard.
</summary>
</member>
<member name="M:ICSharpCode.AvalonEdit.TextEditor.CreateColorizer(ICSharpCode.AvalonEdit.Highlighting.IHighlightingDefinition)">
<summary>
Creates the highlighting colorizer for the specified highlighting definition.
Allows derived classes to provide custom colorizer implementations for special highlighting definitions.
</summary>
<returns></returns>
</member>
<member name="M:ICSharpCode.AvalonEdit.TextEditor.Cut">
<summary>
Removes the current selection and copies it to the clipboard.
</summary>
</member>
<member name="M:ICSharpCode.AvalonEdit.TextEditor.DeclareChangeBlock">
<summary>
Begins a group of document changes and returns an object that ends the group of document
changes when it is disposed.
</summary>
</member>
<member name="P:ICSharpCode.AvalonEdit.TextEditor.Document">
<summary>
Gets/Sets the document displayed by the text editor.
This is a dependency property.
</summary>
</member>
<member name="E:ICSharpCode.AvalonEdit.TextEditor.DocumentChanged">
<summary>
Occurs when the document property has changed.
</summary>
</member>
<member name="F:ICSharpCode.AvalonEdit.TextEditor.DocumentProperty">
<summary>
Document property.
</summary>
</member>
<member name="P:ICSharpCode.AvalonEdit.TextEditor.Encoding">
<summary>
Gets/sets the encoding used when the file is saved.
</summary>
</member>
<member name="M:ICSharpCode.AvalonEdit.TextEditor.EndChange">
<summary>
Ends the current group of document changes.
</summary>
</member>
<member name="P:ICSharpCode.AvalonEdit.TextEditor.ExtentHeight">
<summar
评论8
最新资源