Default Property
See Also 
SourceCode.Configuration Namespace > ToolboxCategoryElement Class : Default Property



Glossary Item Box

Syntax

Visual Basic (Declaration)  
<ConfigurationPropertyAttribute(Name="default", 
   Options=ConfigurationPropertyOptions.None, 
   IsDefaultCollection=False, 
   IsRequired=False, 
   IsKey=False)>
Public Property Default As String
Visual Basic (Usage) Copy Code
Dim instance As ToolboxCategoryElement
Dim value As String
 
instance.Default = value
 
value = instance.Default
C#  
[ConfigurationProperty(Name="default", 
   Options=ConfigurationPropertyOptions.None, 
   IsDefaultCollection=false, 
   IsRequired=false, 
   IsKey=false)]
public string Default {get; set;}
C++/CLI  
[ConfigurationProperty(Name="default", 
   Options=ConfigurationPropertyOptions.None, 
   IsDefaultCollection=false, 
   IsRequired=false, 
   IsKey=false)]
public:
property String^ Default {
   String^ get();
   void set (    String^ 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