Gets the patient's sex.
Syntax
Visual Basic (Declaration) | |
---|
Public Property Sex As String |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As Patient
Dim value As String
instance.Sex = value
value = instance.Sex |
C# | |
---|
public string Sex {get; set;} |
Managed Extensions for C++ | |
---|
public: __property string* get_Sex();
public: __property void set_Sex(
string* value
); |
Property Value
Sex of the named patient. Enumerated Values are: M = male F = female O = other.
Example
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
See Also