Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

ISyntaxHighlightService.Execute() Method

This method is called if the text content of the control is modified.

Namespace: DevExpress.XtraRichEdit.Services

Assembly: DevExpress.RichEdit.v19.1.Core.dll

Declaration

void Execute()

Remarks

Use the Execute method to parse the text into tokens and highlight the document text using the SubDocument.ApplySyntaxHighlight method.

Note

A complete code sample project is available at How to create Syntax Highlight Tokens to implement T-SQL language syntax highlighting repository on GitHub.

public void Execute()
{
    List<SyntaxHighlightToken> tSqltokens = ParseTokens();
    document.ApplySyntaxHighlight(tSqltokens);
}
public void ForceExecute()
{
    Execute();
}
See Also