This code wiill display the Word Find dialog. How do I find out which options the user selected?

Code:
Sub d()
Dim dlgFind As Dialog
 
Set dlgFind = Dialogs(wdDialogEditFind)
 
With dlgFind
 .Display
End With
End Sub