DocumentProperties::Visible Property

 

Determines if the DocumentProperties object is visible in the Properties window.

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

public:
[BrowsableAttribute(false)]
property bool Visible {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

If the DocumentProperties object is visible, returns true; otherwise, returns false.

The DocumentProperties class uses an internal flag to track visibility and this flag is set in the DocumentProperties class constructor. If the internal flag is changed by the Visible property, the Properties window is refreshed but only if the internal flag differs from the new flag.

Return to top
Show: