'Declaration
Function GetCharacters( _ ByVal row As Integer, _ ByVal column As Integer, _ ByVal length As Integer _ ) As IScreenCharacter()
'Usage
Dim instance As IScreen Dim row As Integer Dim column As Integer Dim length As Integer Dim value() As IScreenCharacter value = instance.GetCharacters(row, column, length)
Parameters
- row
- screen row position
- column
- screen column position
- length
- The number of characters to obtain.
Return Value
Array of ScreenCharacter for the specified position.