Get the value of an item.

Namespace: ExpSuite
Assembly: FrameWork (in FrameWork.exe) Version: 1.0.0.0

Syntax

Visual Basic
Public ReadOnly Property GetValue ( _
	Index As Integer _
) As String
	Get

Parameters

Index
Type: System..::..Int32
Index of the item.

Field Value

Return Value

Value of the item with index Index.

Remarks

How to use frmInputBox:

Examples

CopyVB.NET
Dim inpX As New frmInputBox, szX As String, lX As Long

  inpX.Add "const 1", ifNumeric + ifMin, "123", "us", -10
  inpX.Add "const 2", ifString, "asdas", "text"
  inpX.Add "const 3", ifFileName, "C:/asdads", "*.wav"
  If Not inpX.ShowForm("Caption of the input box") Then Set inpX = Nothing: Exit Sub
  szX = ""
  For lX = 0 To inpX.GetCount - 1
    szX = szX + inpX.GetValue(lX) + vbCrLf
  Next
  MsgBox szX
 Set inpX = Nothing

See Also