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