C# Класс ARCed.Scintilla.TextModifiedEventArgs

Provices data for the TextModified event
TextModifiedEventHandler is used as an abstracted subset of the SCN_MODIFIED notification message. It's used whenever the SCNotification's modificationType flags are SC_MOD_INSERTTEXT ,SC_MOD_DELETETEXT, SC_MOD_BEFOREINSERT and SC_MOD_BEFORE_DELETE. They all use a TextModifiedEventArgs which corresponds to a subset of the SCNotification struct having to do with these modification types.
Наследование: ModifiedEventArgs
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
TextModifiedEventArgs ( int modificationType, bool isUserChange, int markerChangedLine, int position, int length, int linesAddedCount, string text ) : System

Initializes a new instance of the TextModifiedEventArgs class.

ToString ( ) : string

Overridden.

Описание методов

TextModifiedEventArgs() публичный Метод

Initializes a new instance of the TextModifiedEventArgs class.
public TextModifiedEventArgs ( int modificationType, bool isUserChange, int markerChangedLine, int position, int length, int linesAddedCount, string text ) : System
modificationType int Specifies the modification type
isUserChange bool true if the change was a direct result of user interaction
markerChangedLine int the line # of where the marker change occured (if applicable)
position int document position where the change occured
length int _length of the change occured
linesAddedCount int the # of lines added or removed as a result of the change
text string affected text of the change
Результат System

ToString() публичный Метод

Overridden.
public ToString ( ) : string
Результат string