tkinter-text

tkinter text widget as html

旧街凉风 提交于 2020-01-03 02:49:11
问题 I had built tkinter app for sending email. The body of email should get the text with formatting/style from the text widget. Is there any method for doing the same. get method is only given the text but not the style/formatting. 回答1: The text widget has a method named dump which can serialize everything in the text widget. It returns a list of tuples. Each tuple will be of the form (key, value, index). key will be one of the following: text , mark , tagon , tagoff , image , or window . The

tkinter text widget as html

筅森魡賤 提交于 2019-12-06 15:58:46
I had built tkinter app for sending email. The body of email should get the text with formatting/style from the text widget. Is there any method for doing the same. get method is only given the text but not the style/formatting. The text widget has a method named dump which can serialize everything in the text widget. It returns a list of tuples. Each tuple will be of the form (key, value, index). key will be one of the following: text , mark , tagon , tagoff , image , or window . The value will be dependent on the key. For example, with tagon and tagoff the value will be the name of the tag.