AuthoringSink::ProcessHiddenRegions Property

 

Indicates whether to update hidden regions.

Namespace:   Microsoft.VisualStudio.Package
Assembly:  Microsoft.VisualStudio.Package.LanguageService.14.0 (in Microsoft.VisualStudio.Package.LanguageService.14.0.dll)

public:
property bool ProcessHiddenRegions {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

Returns true if any hidden regions have been added to the list; otherwise, returns false.

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.

Return to top
Show: