AuthoringSink.FoundMatchingBrace 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.
Tracks if a matching pair of braces was added to the internal list.
public:
property bool FoundMatchingBrace { bool get(); void set(bool value); };
public:
property bool FoundMatchingBrace { bool get(); void set(bool value); };
public bool FoundMatchingBrace { get; set; }
member this.FoundMatchingBrace : bool with get, set
Public Property FoundMatchingBrace As Boolean
Property Value
Returns true
if at least one pair of matching braces was added to the internal list; otherwise, returns false
, if no matching braces have been added.
Remarks
This property should be initialized to false
before starting a parse operation for matching braces. If at the end of the parse operation this property returns true
, then at least one pair of matching braces was found and added to the list through a call to the MatchPair method.