C# 클래스 ARCed.Scintilla.ScintillaHelperBase

상속: IDisposable
파일 보기 프로젝트 열기: borisblizzard/arcreator

Private Properties

프로퍼티 타입 설명
scintilla_Load void

공개 메소드들

메소드 설명
Dispose ( ) : void
Equals ( object obj ) : bool

Abstract Equals Override. All Helpers must implement this. Use IsSameHelperFamily to determine if the types are compatible and they have the same Scintilla. For most top level helpers like Caret and Lexing this should be enough. Helpers like Marker and Line also need to take other variables into consideration.

GetHashCode ( ) : int

보호된 메소드들

메소드 설명
Initialize ( ) : void
IsSameHelperFamily ( object obj ) : bool

Determines if obj belongs to the same Scintilla and is of compatible type

ScintillaHelperBase ( Scintilla scintilla ) : System

비공개 메소드들

메소드 설명
scintilla_Load ( object sender, EventArgs e ) : void

메소드 상세

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

Equals() 공개 추상적인 메소드

Abstract Equals Override. All Helpers must implement this. Use IsSameHelperFamily to determine if the types are compatible and they have the same Scintilla. For most top level helpers like Caret and Lexing this should be enough. Helpers like Marker and Line also need to take other variables into consideration.
public abstract Equals ( object obj ) : bool
obj object
리턴 bool

GetHashCode() 공개 메소드

public GetHashCode ( ) : int
리턴 int

Initialize() 보호된 메소드

protected Initialize ( ) : void
리턴 void

IsSameHelperFamily() 보호된 메소드

Determines if obj belongs to the same Scintilla and is of compatible type
protected IsSameHelperFamily ( object obj ) : bool
obj object
리턴 bool

ScintillaHelperBase() 보호된 메소드

protected ScintillaHelperBase ( Scintilla scintilla ) : System
scintilla Scintilla
리턴 System