例: PartialMatches property

以下のボタンは、検索時の部分一致の使用を切り替えます。このボタンが含まれるフォームには、検索を実行する別のボタンが含まれています。

Dim session As NotesSession
Dim directory As NotesDirectory
Sub Initialize
	Set session = New NotesSession
	Set directory = session.GetDirectory("myserver/Acme")
End Sub

Sub Click(Source As Button)
	Dim msg As String
	If directory.PartialMatches Then
		msg = "Partial matches are in effect"
	Else
		msg = "Partial matches are not in effect"
	End If
	Msgbox msg,, "Partial matches"
End Sub