Table of Contents

Class TextDeletedEventArgs

Namespace
Myra.Events
Assembly
Myra.dll

Provides data for text deletion events.

public class TextDeletedEventArgs : MyraEventArgs
Inheritance
TextDeletedEventArgs
Inherited Members

Constructors

TextDeletedEventArgs(int, string)

Initializes a new instance of the TextDeletedEventArgs class.

public TextDeletedEventArgs(int startPosition, string value)

Parameters

startPosition int

The position where the text was deleted.

value string

The text that was deleted.

Properties

StartPosition

Gets the position where the text was deleted.

public int StartPosition { get; }

Property Value

int

Value

Gets the text that was deleted.

public string Value { get; }

Property Value

string