| Visual Basic (Declaration) | |
|---|---|
<DataMemberAttribute()> Public Property PatientBirthDate As String | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As Study Dim value As String instance.PatientBirthDate = value value = instance.PatientBirthDate | |
| C# | |
|---|---|
[DataMemberAttribute()] public string PatientBirthDate {get; set;} | |
| C++/CLI | |
|---|---|
[DataMemberAttribute()] public: property String^ PatientBirthDate { String^ get(); void set ( String^ value); } | |
Property Value
A System.String representing the patient birth date of the study.Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Copy Code