Click or drag to resize

OhioScreenGetData Method

Returns an array containing the data from the Text, Color, Field or Extended plane of the virtual screen.

Namespace: Flex.Hal.Ohio
Assembly: Flex.Hal.Ohio (in Flex.Hal.Ohio.dll) Version: 6.0.8219.1880
Syntax
public IList<ushort> GetData(
	int startpos,
	int endpos,
	OhioPlane plane
)

Parameters

startpos  Int32
The position where to start. This position is inclusive (for example, position 0 means that row 1, col 1 will be used as the starting location and 1, 1 will be included in the data).
endpos  Int32
The position where to end. This position is inclusive and it must be greater than the start position.
plane  OhioPlane
A valid OhioPlane value.

Return Value

IListUInt16
An array containing the requested data. An empty array will be returned if the starting position or ending position is not valid.
See Also