AuthoringSink.BraceMatching Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.