Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to increase height of entry in tkinter

import tkinter
window = Tk()


# ------------------------ #
my_entry = Entry(width=15, font("Arial", 20, "bold") # You can't increase the
                 # height like width, but you can do it by increasing size of 
                 # of the font. Note: it will increase size of the symbols too.
# ------------------------ #


window.mainloop()
 
PREVIOUS NEXT
Tagged: #increase #height #entry #tkinter
ADD COMMENT
Topic
Name
5+3 =