jarvisteach / appJar

Simple Tkinter GUIs in Python
http://appJar.info
Other
613 stars 68 forks source link

"kind" parameter in configuration #471

Closed Binxlola closed 6 years ago

Binxlola commented 6 years ago

This may be a silly question, however I am struggling to understand or find information as to what I would put in the "kind" value when for example using app.removeWidgetType(). Could anyone explain what I should but in there in relation to a widget, as an example when wanting to remove a label or entry?

jarvisteach commented 6 years ago

@Binxlola - this is an undocumented function, and should probably be better hidden...

There are exposed functions such as .removeButton("b1") or .removeEntry("e1") - these all then call the function you mention, passing in a string for the type.