FormattedText Widget Experimental
WARNING
This widget is experimental
Parameters
Name | Type | Description |
---|---|---|
master | ||
format | ||
variable | ||
controls | ||
fg | ||
bg | ||
width | ||
height | ||
insertbackground | ||
selectbackground | ||
selectforeground | ||
button_bg | ||
button_fg | ||
button_activebackground | ||
button_activeforeground | ||
button_disabledbackground | ||
button_width | ||
button_color |
Methods
Example
py
import tkinter
from tkinterplus.experimental import FormatText
root = tkinter.Tk()
widget = FormatText(root)
widget.pack()
root.mainloop()