This property is True if the patient group is shown on mobile devices.
object.ShowOnMobileDevices
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfilePatientGroup interface |
bool
Display ShowOnMobileDevices for the patient groups.
Dim aFilter
Dim aPatientGroups
Dim aPatientGroup
Dim aMessage
Set aFilter = Profile.CreateProfilePatientGroupFilter
aFilter.PatientGroupStatuses = 1 'Active
set aPatientGroups = Profile.LoadProfilePatientGroupsByFilter(aFilter)
aMessage = "Patient Groups Count: " & aPatientGroups.Count
for i = 0 to aPatientGroups.Count - 1
set aPatientGroup = aPatientGroups.Item(i)
aMessage = aMessage & vbNewLine & "The group " & aPatientGroup.Name &_
" is shown on mobile devices: " & aPatientGroup.ShowOnMobileDevices
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface the Show On Mobile Devices checkbox can be checked in
.