C# Class ARCed.Scintilla.DropMarker

Represents a DropMarker, currently a single document point.
Inheritance: ManagedRange
Show file Open project: borisblizzard/arcreator Class Usage Examples

Public Methods

Method Description
Change ( int newStart, int newEnd ) : void

Overridden, changes the document position. Start and End should match.

Collect ( ) : bool

Collects the DropMarker and causes it to be removed from all lists it belongs ti.

Dispose ( ) : void

Overridden.

Equals ( object obj ) : bool
GetClientRectangle ( ) : Rectangle

Gets the Client Rectangle in pixels of the DropMarker's visual indicator.

GetHashCode ( ) : int
Invalidate ( ) : void

Forces a repaint of the DropMarker

Protected Methods

Method Description
Paint ( Graphics g ) : void

Private Methods

Method Description
Collect ( bool dispose ) : bool
DropMarker ( int start, int end, int topOffset, Scintilla scintilla ) : System

Method Details

Change() public method

Overridden, changes the document position. Start and End should match.
public Change ( int newStart, int newEnd ) : void
newStart int Document _start position
newEnd int Document _end position
return void

Collect() public method

Collects the DropMarker and causes it to be removed from all lists it belongs ti.
public Collect ( ) : bool
return bool

Dispose() public method

Overridden.
public Dispose ( ) : void
return void

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool

GetClientRectangle() public method

Gets the Client Rectangle in pixels of the DropMarker's visual indicator.
public GetClientRectangle ( ) : Rectangle
return System.Drawing.Rectangle

GetHashCode() public method

public GetHashCode ( ) : int
return int

Invalidate() public method

Forces a repaint of the DropMarker
public Invalidate ( ) : void
return void

Paint() protected method

protected Paint ( Graphics g ) : void
g System.Drawing.Graphics
return void