DefaultLanguage Property
See Also 
SourceCode.Framework Namespace > IProject Interface : DefaultLanguage Property



Glossary Item Box

When implemented by a class, gets a collection of References defined in the Project. The References include DLL's or assemblies that have been added to the project and are available to the object it contains.

Syntax

Visual Basic (Declaration) 
Property DefaultLanguage As SupportedLanguages
Visual Basic (Usage)Copy Code
Dim instance As IProject
Dim value As SupportedLanguages
 
instance.DefaultLanguage = value
 
value = instance.DefaultLanguage
C# 
SupportedLanguages DefaultLanguage {get; set;}
C++/CLI 
property SupportedLanguages DefaultLanguage {
   SupportedLanguages get();
   void set (    SupportedLanguages 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