Reflection
GetCharacterForegroundColor Method


The character row position.
The character column position.
Gets the foreground color of the character at the specified location.
Syntax
'Declaration
 
Function GetCharacterForegroundColor( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As ScreenColor
'Usage
 
Dim instance As IIbmScreen
Dim row As Integer
Dim column As Integer
Dim value As ScreenColor
 
value = instance.GetCharacterForegroundColor(row, column)
ScreenColor GetCharacterForegroundColor( 
   int row,
   int column
)

Parameters

row
The character row position.
column
The character column position.

Return Value

Foreground color of the character.
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