New to Telerik UI for WPFStart a free 30-day trial

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 EventArgs.Empty

Constructors

Initializes a new instance of the TextContentChangedEventArgs class.

C#
public TextContentChangedEventArgs(TextSnapshot beforeChangeSnapshot, TextSnapshot afterChangeSnapshot)
Parameters:beforeChangeSnapshotTextSnapshotafterChangeSnapshotTextSnapshot

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; }