'Declaration Public Delegate Function InputBox.FindProc( _ ByVal dialog As InputBox, _ ByVal startPosition As Integer _ ) As Integer
'Usage Dim instance As New InputBox.FindProc(AddressOf HandlerMethod)
public delegate int InputBox.FindProc( InputBox dialog, int startPosition )
public: __gc __delegate int InputBox.FindProc( InputBox* dialog, int startPosition )
public delegate int InputBox.FindProc( InputBox^ dialog, int startPosition )
Parameters
- dialog
- Specifies instance of InputBox class where Find button is clicked.
- startPosition
- The context of search operation.
Return Value
The value to pass for the StartPos parameter for the next call to FindProc.