C# 클래스 NppSharp.ModifiedEventArgs

Arguments for modified events.
상속: System.EventArgs
파일 보기 프로젝트 열기: cmrazek/NppSharp 1 사용 예제들

공개 메소드들

메소드 설명
ModifiedEventArgs ( ModificationType type, TextPtr text, TextLocation location, bool userAction, bool undo, bool redo, int linesAdded ) : System

Creates the event arguments object.

메소드 상세

ModifiedEventArgs() 공개 메소드

Creates the event arguments object.
public ModifiedEventArgs ( ModificationType type, TextPtr text, TextLocation location, bool userAction, bool undo, bool redo, int linesAdded ) : System
type ModificationType The type of modification that occurred.
text TextPtr The text inserted or deleted.
location TextLocation The location of the modification.
userAction bool A flag indicating if this action was caused by the user.
undo bool A flag indicating if this action is part of an undo process.
redo bool A flag indicating if this action is part of a redo process.
linesAdded int The number of lines added by this modification.
리턴 System