The text presentation of the string list.
object.Text
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISIntStrings interface |
string
Display the text presentation of the string list.
sub Main
Dim aHost
Dim aLayout
Dim aList
Set aHost = Profile.CreateCDOFormHost
aLayout = 0
set aList = aHost.GetAccessionPatientTemplateList(0, aLayout)
Profile.MsgBox("Patient prefs" & vbNewLine & aList.Text)
end sub