Get list images from PDF file.
Code Block |
---|
Object.ListRL(@laRLS) |
...
Column | Description |
---|---|
1 | Target type code |
2Image ID | Target type number |
3 | Index in _oreportoutput collection |
...
Numeric
Count lines of array.
Remarks
Applies To: oXFRX
XFRX version: 23.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 |
...