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