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

ISyntaxHighlightService.ForceExecute() Method

Reserved for future use.

Namespace: DevExpress.XtraRichEdit.Services

Assembly: DevExpress.RichEdit.v20.2.Core.dll

NuGet Package: DevExpress.RichEdit.Core

Declaration

void ForceExecute()

Remarks

Implement this method by calling the ISyntaxHighlightService.Execute method.

View Example

The code sample below uses the ParseTokens method to create a list of SyntaxHighlightToken objects and pass it to the SubDocument.ApplySyntaxHighlight method.

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