टेक्स्ट विजेट उपयोगकर्ता से मल्टीलाइन उपयोगकर्ता इनपुट का समर्थन करता है। हम कॉन्फ़िगर करें () का उपयोग करके टेक्स्ट विजेट गुणों जैसे कि इसके फ़ॉन्ट गुण, टेक्स्ट रंग, पृष्ठभूमि, आदि को कॉन्फ़िगर कर सकते हैं। विधि।
टेक्स्ट विजेट के अंदर हमारे टेक्स्ट का औचित्य निर्धारित करने के लिए, हम tag_add() . का उपयोग कर सकते हैं और tag_configure() गुण। हम "औचित्य" . का मान निर्दिष्ट करेंगे केंद्र . के रूप में ।
उदाहरण
# Import the required libraries from tkinter import * # Create an instance of tkinter frame or window win=Tk() # Set the size of the tkinter window win.geometry("700x350") # Create a text widget text=Text(win, width=40, height=10) # justify the text alignment to the center text.tag_configure("center", justify='center') text.insert(INSERT, "Welcome to Tutorialspoint...") # Add the tag from start to end text text.tag_add("center", 1.0, "end") text.pack() win.mainloop()
आउटपुट
यदि आप उपरोक्त कोड चलाते हैं, तो आप देखेंगे कि टेक्स्ट विंडो के कर्सर के केंद्र में औचित्य सेट होगा।