Click here to Skip to main content
15,886,362 members
Articles / Desktop Programming / Windows Forms

Fast Colored TextBox for Syntax Highlighting

Rate me:
Please Sign up or sign in to vote.
4.97/5 (878 votes)
24 Oct 2014LGPL323 min read 7.1M   104.2K   1.3K  
Custom text editor with syntax highlighting
Imports System.Text.RegularExpressions

Public Class AutoIndentSample

    Private Sub fastColoredTextBox1_AutoIndentNeeded(ByVal sender As System.Object, ByVal e As FastColoredTextBoxNS.AutoIndentEventArgs) Handles fastColoredTextBox1.AutoIndentNeeded
        ' if current line is "begin" then next
        ' line shift to right
        If e.LineText.Trim() = "begin" Then
            e.ShiftNextLines = e.TabLength
            Return
        End If
        ' if current line is "end" then current
        ' and next line shift to left
        If e.LineText.Trim() = "end" Then
            e.Shift = -e.TabLength
            e.ShiftNextLines = -e.TabLength
            Return
        End If
        ' if previous line contains "then" or "else", 
        ' and current line do not contain "begin"
        ' then shift current line to right
        If Regex.IsMatch(e.PrevLineText, "\b(then|else)\b") AndAlso Not Regex.IsMatch(e.LineText, "\bbegin\b") Then
            e.Shift = e.TabLength
            Return
        End If
    End Sub

End Class

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer Freelancer
Ukraine Ukraine
I am Pavеl Tоrgаshоv, and I live in Kyiv, Ukraine.
I've been developing software since 1998.
Main activities: processing of large volumes of data, statistics, computer vision and graphics.

Comments and Discussions