Event args for class for TextContentChanged event.
Definition
Namespace:Telerik.Windows.SyntaxEditor.Core.Text
Assembly:Telerik.Windows.SyntaxEditor.Core.dll
Syntax:
C#
public class TextContentChangedEventArgs : EventArgs
Inheritance: objectEventArgsTextContentChangedEventArgs
Inherited Members
Constructors
Initializes a new instance of the TextContentChangedEventArgs class.
C#
public TextContentChangedEventArgs(TextSnapshot beforeChangeSnapshot, TextSnapshot afterChangeSnapshot)
Properties
Gets the TextSnapshot after change.
C#
public TextSnapshot AfterChangeSnapshot { get; }
Gets the TextVersion after change.
C#
public TextVersion AfterChangeVersion { get; }
Gets the TextSnapshot before change.
C#
public TextSnapshot BeforeChangeSnapshot { get; }
Gets the TextVersion before change.
C#
public TextVersion BeforeChangeVersion { get; }