%HI_SetBorderDistance( INT in _refId, INT in _distLeft, [, INT in _distTop , INT in _distRight , INT in _distBottom] )
_refId | Reference to graphic object
(reference variable). |
_distLeft | margin size left |
_distTop | the optional margin size parameter upper, if not specified, _distLeft is used |
_distRight | the optional margin size parameter right, if not specified, _distLeft is used |
_distBottom | the optional margin size parameter bottom, if not specified, _distLeft is used |
Parameters _distTop, _distRight, _distBottom all or none must be entered.
; margin %HI_SetBorderDistance(_RFID_BOX, 10, 5, 10, 5) %HI_SetBorderDistance(_RFID_BOX, 0, 0, 0, 0) ; shortened %HI_SetBorderDistance(_RFID_BOX, 10) ; set all to 10 %HI_SetBorderDistance(_RFID_BOX, 0) ; no margins
Pridať komentár