Property ClosingBraces
- Namespace
- Alternet.Editor.TextSource
- Assembly
- Alternet.Editor.v9.dll
ClosingBraces
Gets or sets an array of characters each one representing a closing brace.
public virtual char[] ClosingBraces { get; set; }
Property Value
- char[]
Examples
Here is how to use a ClosingBraces in the C# code:
using Alternet.Editor;
using Alternet.Editor.TextSource;
public partial class Form1 : Form
{
private TextSource textSource;
private void Form1_Load(object sender, EventArgs e)
{
var syntaxEdit = new SyntaxEdit(this.components);
textSource = new TextSource(this.components);
textSource.LoadFile("myfile.txt");
textSource.OpenBraces = new char[] { '(', '[', '{' };
textSource.ClosingBraces = new char[] { ')', ']', '}' };
syntaxEdit.Source = this.textSource;
}
}
Here is how to use a ClosingBraces in the Visual Basic code:
Imports Alternet.Editor
Imports Alternet.Editor.TextSource
Partial Public Class Form1
Inherits Form
Private textSource As TextSource
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
Dim syntaxEdit = New SyntaxEdit(Me.components)
textSource = New TextSource(Me.components)
textSource.LoadFile("myfile.txt")
textSource.OpenBraces = New Char[] { "("c, "["c, "{"c }
textSource.ClosingBraces = New Char() {")"c, "]"c, "}"c}
syntaxEdit.Source = Me.textSource
End Sub
End Class
Remarks
Use ClosingBraces property to configure which type of matching braces to be highlighted.
This property should be modified together with the OpenBraces property.