FOR循环的步长,怎么精确些?
FOR tempFontSize=8 TO 72 STEP 0.1this.InfoLabel1.fontSize=tempFontSize
IF (this.infoLabel1.height>this.infoLabel2.height).or.(this.infoLabel1.width>this.infoLabel2.width)
this.infoLabel1.fontSize=tempFontSize-0.5
EXIT
ENDIF
ENDFOR
像上面的 怎么可以让步长是0.1呢? 我测到的结果 是1啊