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