ISPatient.SexLong

Description

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

Syntax

object.SexLong

Part Attribute Type Description
object Required
The object always implements the ISPatient interface
Restriction: This property is readonly.

Return Value

string

Example

Display the patient's gender in a longer format.

Dim aPatient  
Dim aSexLong  

Set aPatient = Profile.SelectPatient
aSexLong = aPatient.SexLong
Profile.MsgBox (aSexLong)   
Note:

Version information

Added in v7.8.0