GetData

Returns an array of integers containing the data from the specified plane.


Syntax

FlexFields(FlexPlane)


Parameters


FlexPlane

Integer, input



The plane to get the data from.


Remarks

The planes available for use with the GetData method are:

FlexPlane.Text
Text displayed at the specified field location.

FlexPlane.Color
Color of the text displayed at the specified field location.

FlexPlane.Field
Field attributes (a sparse array containing field attributes) at the specified field location; non-field locations will contain the character set (0 = default, 1 = APL)

FlexPlane.Extended
Field extended attributes (a sparse array containing extended attributes) at the specified field location.


Example

Sub Main()

Data = FlexScreen.Fields(40).GetData(FlexPlane.EXTENDED)

If FlexFieldExtended.GetHighLight(Data(5)) = FlexFieldExtended.Blink then

Msgbox "Blinking character"

Else

Msgbox "Non-Blinking character"

End If

End Sub