टिंकर में कई अंतर्निहित विधियां और कार्य हैं जिनका उपयोग विगेट्स में विभिन्न सुविधाएं प्रदान करने के लिए किया जाता है। हम font('font-family',font-size, 'style') का उपयोग करके tkinter एप्लिकेशन में टेक्स्ट विजेट के फ़ॉन्ट-प्रॉपर्टी को कस्टमाइज़ कर सकते हैं। गुण। टपल को टेक्स्ट कंस्ट्रक्टर के अंदर घोषित किया जा सकता है।
उदाहरण
Let us have a look at the following example where we will create a text widget with a customized font property. #Import tkinter library from tkinter import * from tkinter import ttk #Create an instance of tkinter frame or window win= Tk() #Set the geometry of tkinter frame win.geometry("750x250") #Define a text widget with font-property text= Text(win, height=15, font=('Times New Roman',17,'bold')) text.insert(INSERT, "Hey Folks!, Welcome to TutorialsPoint!") text.pack() win.mainloop()
आउटपुट
उपरोक्त कोड को चलाने से एक विंडो प्रदर्शित होगी जिसमें एक टेक्स्ट विजेट होगा। टेक्स्ट विजेट के अंदर लिखे गए टेक्स्ट को फ़ॉन्ट . का उपयोग करके कस्टमाइज़ किया जा सकता है संपत्ति।