ShrinkHeight Method
Use this method to shorten the page size. Please see HTML page size adjustment for more information.
Object.ShrinkHeight(nUDReduceHeightBy)
Parameters
nUDReduceHeightBy
The difference by which the length of the page will be reduced. if the value is -1, then XFRX use constant value 16500 (FRU).
Remarks
Applies To: XFRX#INIT, XFRX#LISTENER, oXFRX
XFRX version: 24.0 for oXFRX
Examples
LOCAL m.lnErr m.loXFRX=EVALUATE([xfrx("XFRX#INIT")]) m.lnErr=m.loXFRX.SetParams(,,,,.T.,,"XFF") IF m.lnErr<>0 ?m.loXFRX.ErrorMessage(m.lnErr) ELSE m.loXFRX.ShrinkHeight(20000) ENDIF