1. Tag Results
highlight-specific-format-text (1)
1 - 1 of 1
How to highlight the text while it end with some specific character?
We can customize the color of line if it is end with specific character. It can be achieved by setting the lexem in custom config file.   Lexem It contains rules for parsing the text. There are two attributes to specify the format of the lexem.   Type: Type is used for standard predefined types of the lexems. FormatName: The FormatName is used only when Type is Custom.   Here we have highlighted the line if end with “!” character. The following code demonstrates the same.   XML <!-- Configuaration -->   <ConfigLanguage name="new" CaseInsensitive="true">   <formats>   <!-- Highlight color -->   <format name="String" Font="Courier New, 13pt, style=Bold" FontColor="Green" />   </formats>   <extensions>   <extension>new</extension>   </extensions>   <lexems>   <!-- Set the Required Highlight format -->   <lexem BeginBlock="[A-z\s]+\!" IsBeginRegex="true"  Type="String"/>   </lexems>   <splits>   <split IsRegex="true">[A-z\s]+\!</split>   </splits>   </ConfigLanguage>     C# //Define config file path   private string configPath = Path.GetDirectoryName(Application.ExecutablePath) + "\\..\\..\\Config.xml";   public Form1() {    InitializeComponent();   editControl1.Text = "Hello World!" + Environment.NewLine + "Welcome" + Environment.NewLine + "Have a Good Day!";   // External configuration file.   this.editControl1.Configurator.Open(configPath);   // Apply the configuration defined in the configuration file.   this.editControl1.ApplyConfiguration("new");   }   Screenshot     Sample: SyntaxEditorSample  
No articles found
No articles found
1 of 1 pages (1 item)