The repeating period for the patient's repeating intervention.
object.RepeatFrequency
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientRecallVisit interface |
int
Display the repeating period for the patient's repeating intervention.
sub main()
Dim aPatient, aRecallVisits, aMessage
set aPatient = Profile.SelectPatient
set aRecallPlans = aPatient.RecallPlans
aMessage = aMessage & GetPlanCollectionInfo(aRecallPlans)
Profile.MsgBox(aMessage)
end sub
function GetPlanCollectionInfo(aRecallPlans)
for each aPlan in aRecallPlans
info = aPlan.Description & vbNewLine
set aVisits = aPlan.Visits
for each aVisit in aVisits
info = info & " The frequency of the repeated intervention '" &_
aVisit.Description & "' is " & aVisit.RepeatFrequency & vbNewLine
next
next
GetPlanCollectionInfo = info
end function
In Profile Client v8 on User Interface Repeat Frequency can be found in
.