Method | Description | |
---|---|---|
DefaultFormattingStrategy ( ) : System |
Creates a new instance off DefaultFormattingStrategy
|
|
FormatLine ( TextArea textArea, int line, int cursorOffset, char ch ) : int |
This function formats a specific line after
|
|
IndentLine ( TextArea textArea, int line ) : int |
This function sets the indentation level in a specific line
|
|
IndentLines ( TextArea textArea, int begin, int end ) : void |
This function sets the indentlevel in a range of lines.
|
|
SearchBracketBackward ( IDocument document, int offset, char openBracket, char closingBracket ) : int | ||
SearchBracketForward ( IDocument document, int offset, char openBracket, char closingBracket ) : int |
Method | Description | |
---|---|---|
AutoIndentLine ( TextArea textArea, int lineNumber ) : int |
Could be overwritten to define more complex indenting.
|
|
GetIndentation ( TextArea textArea, int lineNumber ) : string |
returns the whitespaces which are before a non white space character in the line line as a string.
|
|
SmartIndentLine ( TextArea textArea, int line ) : int |
Could be overwritten to define more complex indenting.
|
protected AutoIndentLine ( TextArea textArea, int lineNumber ) : int | ||
textArea | TextArea | |
lineNumber | int | |
return | int |
public DefaultFormattingStrategy ( ) : System | ||
return | System |
public FormatLine ( TextArea textArea, int line, int cursorOffset, char ch ) : int | ||
textArea | TextArea | |
line | int | |
cursorOffset | int | |
ch | char | |
return | int |
protected GetIndentation ( TextArea textArea, int lineNumber ) : string | ||
textArea | TextArea | |
lineNumber | int | |
return | string |
public IndentLine ( TextArea textArea, int line ) : int | ||
textArea | TextArea | |
line | int | |
return | int |
public IndentLines ( TextArea textArea, int begin, int end ) : void | ||
textArea | TextArea | |
begin | int | |
end | int | |
return | void |
public SearchBracketBackward ( IDocument document, int offset, char openBracket, char closingBracket ) : int | ||
document | IDocument | |
offset | int | |
openBracket | char | |
closingBracket | char | |
return | int |
public SearchBracketForward ( IDocument document, int offset, char openBracket, char closingBracket ) : int | ||
document | IDocument | |
offset | int | |
openBracket | char | |
closingBracket | char | |
return | int |
protected SmartIndentLine ( TextArea textArea, int line ) : int | ||
textArea | TextArea | |
line | int | |
return | int |