Tkinter.Place = class Place
    Geometry manager Place.
 
Base class to use the methods place_* in every widget.
 
  Methods defined here:
config = place_configure(self, cnf={}, **kw)
configure = place_configure(self, cnf={}, **kw)
forget = place_forget(self)
info = place_info(self)
place = place_configure(self, cnf={}, **kw)
place_configure(self, cnf={}, **kw)
Place a widget in the parent widget. Use as options:
in=master - master relative to which the widget is placed.
x=amount - locate anchor of this widget at position x of master
y=amount - locate anchor of this widget at position y of master
relx=amount - locate anchor of this widget between 0.0 and 1.0
              relative to width of master (1.0 is right edge)
    rely=amount - locate anchor of this widget between 0.0 and 1.0
              relative to height of master (1.0 is bottom edge)
    anchor=NSEW (or subset) - position anchor according to given direction
width=amount - width of this widget in pixel
height=amount - height of this widget in pixel
relwidth=amount - width of this widget between 0.0 and 1.0
                  relative to width of master (1.0 is the same width
          as the master)
    relheight=amount - height of this widget between 0.0 and 1.0
                   relative to height of master (1.0 is the same
           height as the master)
    bordermode="inside" or "outside" - whether to take border width of master widget
                                       into account
place_forget(self)
Unmap this widget.
place_info(self)
Return information about the placing options
for this widget.
place_slaves(self) from Tkinter.Misc
Return a list of all slaves of this widget
in its packing order.
slaves = place_slaves(self) from Tkinter.Misc
Return a list of all slaves of this widget
in its packing order.