change_bCap [Version 1.5 or later]


Edits a caption for a specified button.


change_bCap <ButtonNumber>,<Caption>
<ButtonNumber>
Number indicating the button location in all button arrangement on a TP operation panel.
<Caption>
Character string to be displayed on the center of a button.


change_bCap displays a character string specified by <Caption> on the center of a button specified by <ButtonNumber>.


'!TITLE "<Title>"
PROGRAM sample3
·
·
·
bcap4 = "Cut workpiece"
btn_no = 3
·
·
·
change_bCap btn_no,bcap4
·
·
·
end


Top