Files
typeshed/stdlib/tkinter/scrolledtext.pyi
2024-03-30 18:35:57 -07:00

10 lines
302 B
Python

from tkinter import Frame, Misc, Scrollbar, Text
__all__ = ["ScrolledText"]
# The methods from Pack, Place, and Grid are dynamically added over the parent's impls
class ScrolledText(Text):
frame: Frame
vbar: Scrollbar
def __init__(self, master: Misc | None = None, **kwargs) -> None: ...