Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Get list images from PDF file.

Code Block
Object.ListRL(@laRLS)

...

Numeric
Count lines of array.

Remarks

Applies To: oXFRX

XFRX version: 2324.0

Examples

Code Block
=EVALUATE([xfrx("LOADRL")])
LOCAL ARRAY m.laRLS(1)
LOCAL m.lii, m.liCount
m.liCount=_Screen.oXFRX.ListRL(@m.laRLS)
FOR m.lii=1 TO m.liCount
    ?m.laRLS(m.lii, 1), m.laRLS(m.lii, 2), m.laRLS(m.lii, 3)
NEXT
 

...