Method | Description | |
---|---|---|
FindNextWordStart ( IDocument document, int offset ) : int | ||
FindPrevWordStart ( IDocument document, int offset ) : int | ||
FindWordEnd ( IDocument document, int offset ) : int | ||
FindWordStart ( IDocument document, int offset ) : int | ||
GetCharacterType ( char c ) : CharacterType | ||
GetExpressionBeforeOffset ( TextArea textArea, int initialOffset ) : string | This method returns the expression before a specified offset. That method is used in code completion to determine the expression given to the parser for type resolve. | |
GetFirstNonWSChar ( IDocument document, int offset ) : int | ||
GetLineAsString ( IDocument document, int lineNumber ) : string | ||
GetWordAt ( IDocument document, int offset ) : string | ||
IsEmptyLine ( IDocument document, |
Returns true, if the line lineNumber is empty or filled with whitespaces. | |
IsEmptyLine ( IDocument document, int lineNumber ) : bool | Returns true, if the line lineNumber is empty or filled with whitespaces. | |
IsLetterDigitOrUnderscore ( char c ) : bool | ||
LeadingWhiteSpaceToTabs ( string line, int tabIndent ) : string | This function takes a string and converts the whitespace in front of it to tabs. If the length of the whitespace at the start of the string was not a whole number of tabs then there will still be some spaces just before the text starts. the output string will be of the form: 1. zero or more tabs 2. zero or more spaces (less than tabIndent) 3. the rest of the line | |
SearchBracketBackward ( IDocument document, int offset, char openBracket, char closingBracket ) : int | ||
SearchBracketForward ( IDocument document, int offset, char openBracket, char closingBracket ) : int |
Method | Description | |
---|---|---|
IsWordPart ( char ch ) : bool |
public static FindNextWordStart ( IDocument document, int offset ) : int | ||
document | IDocument | |
offset | int | |
return | int |
public static FindPrevWordStart ( IDocument document, int offset ) : int | ||
document | IDocument | |
offset | int | |
return | int |
public static FindWordEnd ( IDocument document, int offset ) : int | ||
document | IDocument | |
offset | int | |
return | int |
public static FindWordStart ( IDocument document, int offset ) : int | ||
document | IDocument | |
offset | int | |
return | int |
public static GetCharacterType ( char c ) : CharacterType | ||
c | char | |
return | CharacterType |
public static GetExpressionBeforeOffset ( TextArea textArea, int initialOffset ) : string | ||
textArea | TextArea | |
initialOffset | int | |
return | string |
public static GetFirstNonWSChar ( IDocument document, int offset ) : int | ||
document | IDocument | |
offset | int | |
return | int |
public static GetLineAsString ( IDocument document, int lineNumber ) : string | ||
document | IDocument | |
lineNumber | int | |
return | string |
public static GetWordAt ( IDocument document, int offset ) : string | ||
document | IDocument | |
offset | int | |
return | string |
public static IsEmptyLine ( IDocument document, |
||
document | IDocument | |
line | ||
return | bool |
public static IsEmptyLine ( IDocument document, int lineNumber ) : bool | ||
document | IDocument | |
lineNumber | int | |
return | bool |
public static IsLetterDigitOrUnderscore ( char c ) : bool | ||
c | char | |
return | bool |
public static LeadingWhiteSpaceToTabs ( string line, int tabIndent ) : string | ||
line | string | |
tabIndent | int | |
return | string |
public static SearchBracketBackward ( IDocument document, int offset, char openBracket, char closingBracket ) : int | ||
document | IDocument | |
offset | int | |
openBracket | char | |
closingBracket | char | |
return | int |
public static SearchBracketForward ( IDocument document, int offset, char openBracket, char closingBracket ) : int | ||
document | IDocument | |
offset | int | |
openBracket | char | |
closingBracket | char | |
return | int |