C# Class ARCed.Scintilla.Document

Provides an abstraction over Scintilla's Document Pointer
Inheritance: ScintillaHelperBase
Show file Open project: borisblizzard/arcreator

Public Methods

Method Description
AddRef ( ) : void

Increases the document's reference count

No, you aren't looking at COM, move along.

Equals ( object obj ) : bool

Overridden.

GetHashCode ( ) : int

Overridden

Release ( ) : void

Decreases the document's reference count

When the document's reference count reaches 0 Scintilla will destroy the document

Private Methods

Method Description
Document ( Scintilla scintilla, IntPtr handle ) : System

Method Details

AddRef() public method

Increases the document's reference count
No, you aren't looking at COM, move along.
public AddRef ( ) : void
return void

Equals() public method

Overridden.
public Equals ( object obj ) : bool
obj object Another Document Object
return bool

GetHashCode() public method

Overridden
public GetHashCode ( ) : int
return int

Release() public method

Decreases the document's reference count
When the document's reference count reaches 0 Scintilla will destroy the document
public Release ( ) : void
return void