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
파일 보기 프로젝트 열기: borisblizzard/arcreator 1 사용 예제들

공개 메소드들

메소드 설명
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