टिंकर विजेट्स को टिंकर एप्लिकेशन विंडो में मौजूद होना चाहिए। पूर्वनिर्धारित गुणों या कार्यों का उपयोग करके सभी विजेट्स को कॉन्फ़िगर और अनुकूलित किया जा सकता है।
टिंकर एप्लिकेशन में विजेट की चौड़ाई प्राप्त करने के लिए, हम winfo_width() का उपयोग कर सकते हैं तरीका। यह विजेट की चौड़ाई लौटाता है जिसे बाद में आउटपुट के रूप में प्रिंट किया जा सकता है।
उदाहरण
#Import the required libraries from tkinter import * #Create an instance of Tkinter Frame win = Tk() #Set the geometry win.geometry("700x350") #Set the default color of the window win.config(bg='#aad5df') #Create a Label to display the text label=Label(win, text= "Hello World!",font= ('Helvetica 18 bold'), background= 'white', foreground='purple1') label.pack(pady = 50) win.update() #Return and print the width of label widget width = label.winfo_width() print("The width of the label is:", width, "pixels") win.mainloop()
आउटपुट
उपरोक्त कोड को चलाने से एक विंडो प्रदर्शित होगी जिसमें एक लेबल विजेट होगा।
जब हम कोड संकलित करते हैं, तो यह कंसोल पर लेबल विजेट की चौड़ाई प्रिंट करेगा।
The width of the label is: 148 pixels