public void DoSyntaxHightlight_CurrentLine(CodeTextBox codeTextbox) { #region Compile regexs if necessary if (!compiled) { Update(codeTextbox); } #endregion string line = RichTextboxHelper.GetCurrentLine(codeTextbox); int lineStart = RichTextboxHelper.GetCurrentLineStartIndex(codeTextbox); ProcessLine(codeTextbox, line, lineStart); }
public void DoIntellisense_CurrentLine(CodeTextBox codeTextbox, TreeView m_IntellisenseTree) { #region Compile regexs if necessary if (!compiled) { Update(codeTextbox); } #endregion string line = RichTextboxHelper.GetCurrentLine(codeTextbox); int lineStart = RichTextboxHelper.GetCurrentLineStartIndex(codeTextbox); ProcessLine(codeTextbox, line, lineStart, m_IntellisenseTree); }