libgdx - how to align text in a textbutton -


i have rectangle button , trying align text in example:

  but1.getlabel().setalignment(align.left); 

i know there different options such align.right, bottomright etc. however, these options align text around edges of rectangle below. in case bottomleft , bottomright:

enter image description here

enter image description here

i looking way specify in between. instance, align text between bottomleft , center (not on edges? example:

enter image description here

a textbutton table label component. means can apply padding it. if want label offset bottom left corner, give appropriate padding. this:

textbutton tb = new textbutton("1", skin); tb.pad(20, 5, 0, 15); 

of course, can add alignments or other paddings if necessary, how manipulate label's position.