例: Parent property (NotesInternational - LotusScript®)

次の Visual Basic コードは NotesInternational オブジェクトの親ユーザー名を表示します。

Private Sub IntlParent_Click()
Dim s As New NotesSession
s.Initialize
Dim intl As NotesInternational
Set intl = s.International
MsgBox intl.Parent.UserName, , "Parent user name"
End Sub