InfoConnect for Unisys
GetFieldText Method (IT27Screen)


Field row position.
Field column position.
Gets the text of the field that the specified row and column are part of.
Syntax
'Declaration
 
Function GetFieldText( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As String
'Usage
 
Dim instance As IT27Screen
Dim row As Integer
Dim column As Integer
Dim value As String
 
value = instance.GetFieldText(row, column)
string GetFieldText( 
   int row,
   int column
)

Parameters

row
Field row position.
column
Field column position.

Return Value

Text of the field.
Exceptions
ExceptionDescription
System.ArgumentOutOfRangeException This exception is thrown if the row or column parameters are outside the range of valid values: (1 to Rows) or (1 to Columns).
See Also