SolutionFolder::Hidden Property

 

Sets or gets the hidden attribute of the solution.

Namespace:   EnvDTE80
Assembly:  EnvDTE80 (in EnvDTE80.dll)

property bool Hidden {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

Determines if a solution is hidden from view in the solution explorer.

This example creates a new solution folder and adds a project to it from an existing file. It also adds a new nested solution folder to the first one, by using the AddSolutionFolder method and then displays the Hidden property and sets it to false. Before running this example, create a "Projects" folder off your main drive ("C:" in this example), and create a Visual C# class library project named "ClassLibrary1" in that folder. Open a project in the Visual Studio integrated development environment (IDE) before running this example.

No code example is currently available or this language may not be supported.
Return to top
Show: