This filter property is used to load the patient groups by the group name.
object.PatientGroupName
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfilePatientGroupFilter interface |
string
Display the number of the patient groups loaded on the basis of the selected filter and their names.
Dim aFilter
Dim aPatientGroups
Dim aPatientGroup
Dim aMessage
Set aFilter = Profile.CreateProfilePatientGroupFilter
aFilter.PatientGroupType = 3 ' spgtAll
set aPatientGroups = Profile.LoadProfilePatientGroupsByFilter(aFilter)
aMessage = "Patient Groups Count = " & aPatientGroups.Count
for i = 0 to aPatientGroups.Count - 1
set aPatientGroup = aPatientGroups.Item(i) ' ISProfilePatientGroup
aMessage = aMessage & vbNewLine & (i + 1) & ") " & aPatientGroup.Name
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Patient Group Names can be found in
.