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

Наследование: IDisposable
Показать файл Открыть проект

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