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