'Declaration Public Function New( _ ByVal title As String, _ ByVal caption As String, _ ByVal findText As String, _ ByVal findCallback As InputBox.FindProc, _ ByVal startPosition As Integer _ )
'Usage Dim title As String Dim caption As String Dim findText As String Dim findCallback As InputBox.FindProc Dim startPosition As Integer Dim instance As New InputBox(title, caption, findText, findCallback, startPosition)
public InputBox( string title, string caption, string findText, InputBox.FindProc findCallback, int startPosition )
public: InputBox( string* title, string* caption, string* findText, InputBox.FindProc* findCallback, int startPosition )
public: InputBox( String^ title, String^ caption, String^ findText, InputBox.FindProc^ findCallback, int startPosition )
Parameters
- title
- Window title.
- caption
- Explanatory text shown at top of window.
- findText
- Initial text to populate edit box with.
- findCallback
- Method to call when Find button is clicked.
- startPosition
- An integer passed to FindProc, used to provide context for a search operation.
Return Value
The new instance of InputBox class.