C# Class ARCed.Scintilla.CaretInfo

Inheritance: TopLevelHelper
Show file Open project: borisblizzard/arcreator

Private Properties

Property Type Description
ResetBlinkRate void
ResetColor void
ResetCurrentLineBackgroundAlpha void
ResetCurrentLineBackgroundColor void
ResetHighlightCurrentLine void
ResetIsSticky void
ResetStyle void
ResetWidth void
ShouldSerializeBlinkRate bool
ShouldSerializeColor bool
ShouldSerializeCurrentLineBackgroundAlpha bool
ShouldSerializeCurrentLineBackgroundColor bool
ShouldSerializeHighlightCurrentLine bool
ShouldSerializeIsSticky bool
ShouldSerializeStyle bool
ShouldSerializeWidth bool

Public Methods

Method Description
BringIntoView ( ) : void

Places the caret somewhere within the document that is displayed in the Scintilla Window

If the caret is already visible in the current scrolled view this method does nothing.

ChooseCaretX ( ) : void

Scintilla remembers the x value of the last position horizontally moved to explicitly by the user and this value is then used when moving vertically such as by using the up and down keys. This method sets the current x position of the caret as the remembered value.

EnsureVisible ( ) : void

Scrolls the Scintilla window so that the Caret is visible.

Goto ( int position ) : void

Places the caret at the specified document position

ToString ( ) : string

Protected Methods

Method Description
CaretInfo ( Scintilla scintilla ) : System.ComponentModel
ShouldSerialize ( ) : bool

Private Methods

Method Description
ResetBlinkRate ( ) : void
ResetColor ( ) : void
ResetCurrentLineBackgroundAlpha ( ) : void
ResetCurrentLineBackgroundColor ( ) : void
ResetHighlightCurrentLine ( ) : void
ResetIsSticky ( ) : void
ResetStyle ( ) : void
ResetWidth ( ) : void
ShouldSerializeBlinkRate ( ) : bool
ShouldSerializeColor ( ) : bool
ShouldSerializeCurrentLineBackgroundAlpha ( ) : bool
ShouldSerializeCurrentLineBackgroundColor ( ) : bool
ShouldSerializeHighlightCurrentLine ( ) : bool
ShouldSerializeIsSticky ( ) : bool
ShouldSerializeStyle ( ) : bool
ShouldSerializeWidth ( ) : bool

Method Details

BringIntoView() public method

Places the caret somewhere within the document that is displayed in the Scintilla Window
If the caret is already visible in the current scrolled view this method does nothing.
public BringIntoView ( ) : void
return void

CaretInfo() protected method

protected CaretInfo ( Scintilla scintilla ) : System.ComponentModel
scintilla Scintilla
return System.ComponentModel

ChooseCaretX() public method

Scintilla remembers the x value of the last position horizontally moved to explicitly by the user and this value is then used when moving vertically such as by using the up and down keys. This method sets the current x position of the caret as the remembered value.
public ChooseCaretX ( ) : void
return void

EnsureVisible() public method

Scrolls the Scintilla window so that the Caret is visible.
public EnsureVisible ( ) : void
return void

Goto() public method

Places the caret at the specified document position
public Goto ( int position ) : void
position int Position in the document to place the caret
return void

ShouldSerialize() protected method

protected ShouldSerialize ( ) : bool
return bool

ToString() public method

public ToString ( ) : string
return string