The provider (or the place of service) that the referral was for, if applicable.
object.ReferedToAsString
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISReferral interface |
string
Display some information about the referral, including the provider (or the place of service) that the referral was for.
Dim aPatient
Dim aReferralsFilter
Dim aReferrals
Dim aReferral
Dim aMessage
Set aPatient = Profile.SelectPatient
set aReferralsFilter = Profile.CreateReferralsFilter
aReferralsFilter.Patient = aPatient.Id
set aReferrals = Profile.LoadReferrals(aReferralsFilter)
aMessage = aMessage & "Refferals Count = " & aReferrals.Count
aMessage = aMessage & vbNewLine &_
"Referred On:" & vbTab & "Referred To:"
for i = 0 to aReferrals.Count - 1
set aReferral = aReferrals.Item(i)
aMessage = aMessage & vbNewLine &_
aReferral.ReferredOn & vbTab &_
aReferral.ReferedToAsString
next
Profile.MsgBox (aMessage)
In Profile Client v8 on User Interface Referred To As String can be found in
or .