The patient's gender in a longer format. There is no Sex Long on User Interface, but Sex as a single character string can be found in Patient/Alter Patient/General/Sex field.
M | Male |
F | Female |
i | Indeterminate |
U | Unknown |
T | Transgender |
object.SexLong
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatient interface |
string
Display the patient's gender in a longer format.
Dim aPatient
Dim aSexLong
Set aPatient = Profile.SelectPatient
aSexLong = aPatient.SexLong
Profile.MsgBox (aSexLong)