guys.
When i copy some words from internet using Chrome and paste to the Office Words, Words remind me that I can paste the words keeping source format.
That means clipboard can contain both the plain text and its format?
Meanwhile, I am writing an app using Python to get the content of clipboard. But don't know how to get the content format.
import Tkinter
if __name__ == '__main__':
r=Tkinter.Tk()
r.withdraw()
print r.clipboard_get()
r.destroy()
BTW, my app is running on Win7.
Thanks in advance. :)