GetData

Top  Previous  Next

Returns a character array containing the data from the Text, Color, Field or Extended plane of the virtual Screen.

 

VB.NET

 

[Char Array =] Screen.GetData(start As Position, end As Position, plane As Integer)

 

C#

 

[char[] =] Screen.GetData(startpos, endpos:Position; plane:integer);

 

 

Parameters

 

Parameter

Description

start

The row and column where to start. The position is inclusive (for example, row 1, col 1 means that position 1,1 will be used as the starting location and 1,1 will be included in the data). "start" must be positionally less than "end".

end

The row and column where to end. The position is inclusive (for example, row 1, col 1 means that position 1,1 will be used as the ending location and 1,1 will be included in the data). "end" must be positionally greater than "start".

plane

A valid OHIO_PLANE value.