Gets or sets the current region.
Syntax
| C# | |
|---|
string CurrentRegion {get; set;} |
Property Value
Type: System.String
The current region of profile.
Example
The following example uses property
CurrentRegion of profile.
| C# | Copy Code |
|---|
// get region
string region = project.Profile.CurrentRegion;
// set region
project.Profile.CurrentRegion = "MyRegion"; |
| PHP | Copy Code |
|---|
// get region
$region = $project->Profile->CurrentRegion;
// set region
$project->Profile->CurrentRegion = "MyRegion"; |
Requirements
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven
See Also