InfoConnect for Airlines
ScreenIndexToRow Method (IAlcScreen)


One-based screen index location. Range = 1 through (rows * columns).
Gets the row value of a screen location pointed to by screenIndex.
Syntax
'Declaration
 
Function ScreenIndexToRow( _
   ByVal screenIndex As Integer _
) As Integer
'Usage
 
Dim instance As IAlcScreen
Dim screenIndex As Integer
Dim value As Integer
 
value = instance.ScreenIndexToRow(screenIndex)
int ScreenIndexToRow( 
   int screenIndex
)

Parameters

screenIndex
One-based screen index location. Range = 1 through (rows * columns).

Return Value

Row corresponding to the specified screen index location.
Exceptions
ExceptionDescription
System.ArgumentOutOfRangeException This exception is thrown if the screenIndex parameter is outside the range of valid values.
See Also