Category / Section
How to syntax highlight the following code such that every open bracket has an equivalent closing bracket in WinForms SyntaxEditor (EditControl)?
1 min read
Content divider
(defun run_fn() (setq res (pk_body_boolean_2(b0 tag)(b1 ltag)(list(cons ‘tolerance 1.0e-5)))))
This can be done in Edit Control by setting the IsCollapsable property of the lexem to true in the configuration file. The configuration settings that needs to be used here is given below:
XML
IsComplex="true" IsCollapsable="true" AutoNameExpression="\(defun\s+(?.*?\s*\(.*\))" AutoNameTemplate="${text} " IsCollapseAutoNamed="true" CollapseName="DEFUN">
Reference link: https://help.syncfusion.com/windowsforms/syntax-editor/text-visualization#content-dividers