Interface ITextDocumentEditor
Represents an editor for text documents.
Namespace: Telerik.Windows.SyntaxEditor.Core.Editor
Assembly: Telerik.Windows.SyntaxEditor.Core.dll
Syntax
public interface ITextDocumentEditor
Properties
Document
Gets or sets the text document.
Declaration
TextDocument Document { get; set; }
Property Value
TextDocument
|
Events
DocumentChanged
Occurs when document has been changed.
Declaration
event EventHandler DocumentChanged
Event Type
System.EventHandler
|
DocumentChanging
Occurs when document is being changed.
Declaration
event EventHandler DocumentChanging
Event Type
System.EventHandler
|
DocumentContentChanged
Occurs when the content of the document has been changed.
Declaration
event EventHandler<TextContentChangedEventArgs> DocumentContentChanged
Event Type
System.EventHandler<TextContentChangedEventArgs>
|