Views Property
See Also 
SourceCode.Configuration Namespace > EnvironmentElement Class : Views Property



Glossary Item Box

Syntax

Visual Basic (Declaration)  
<ConfigurationPropertyAttribute(Name="views", 
   Options=ConfigurationPropertyOptions.None, 
   IsDefaultCollection=False, 
   IsRequired=False, 
   IsKey=False)>
Public Property Views As ViewCollection
Visual Basic (Usage) Copy Code
Dim instance As EnvironmentElement
Dim value As ViewCollection
 
instance.Views = value
 
value = instance.Views
C#  
[ConfigurationProperty(Name="views", 
   Options=ConfigurationPropertyOptions.None, 
   IsDefaultCollection=false, 
   IsRequired=false, 
   IsKey=false)]
public ViewCollection Views {get; set;}
C++/CLI  
[ConfigurationProperty(Name="views", 
   Options=ConfigurationPropertyOptions.None, 
   IsDefaultCollection=false, 
   IsRequired=false, 
   IsKey=false)]
public:
property ViewCollection^ Views {
   ViewCollection^ get();
   void set (    ViewCollection^ value);
}

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also