AuthoringSink.ProcessHiddenRegions 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.
Determines whether or not hidden regions should be updated or not based on the calls to AddHiddenRegion. Default is false.
public:
property bool ProcessHiddenRegions { bool get(); void set(bool value); };
public:
property bool ProcessHiddenRegions { bool get(); void set(bool value); };
public bool ProcessHiddenRegions { get; set; }
member this.ProcessHiddenRegions : bool with get, set
Public Property ProcessHiddenRegions As Boolean
Property Value
Returns true
if any hidden regions have been added to the list; otherwise, returns false
.
Remarks
This property is used by the parser to track whether the hidden regions list kept in the AuthoringSink object has been updated. The parser should initialize this property to false
at the start of the parse operation and then set the property to true if the parser ever calls AddHiddenRegion. When the parse operation is complete, this property indicates if any hidden regions were added to the list and therefore the display might need to be updated.