AuthoringSink.BraceMatching Property

Definition

Use this property to find if your parser should call MatchPair or MatchTriple

public:
 property bool BraceMatching { bool get(); };
public:
 property bool BraceMatching { bool get(); };
public bool BraceMatching { get; }
member this.BraceMatching : bool
Public ReadOnly Property BraceMatching As Boolean

Property Value

Returns true if brace matching is to be done; otherwise, returns false (no brace matching allowed).

Remarks

This property is queried by the parser to determine if it should deal with brace matching in this particular execution and if so, store matching braces with a call to MatchPair. This property examines the ParseReason and returns true if it is MatchBraces, HighlightBraces, or MemberSelectAndHighlightBraces.

Applies to