R/tk-containers.R
tic_row.Rd
This is not a direct analogy for a single tk element
tic_row(..., bind = NULL, pack = NULL, pack_def = NULL)
tic_col(..., bind = NULL, pack = NULL, pack_def = NULL)
Other arguments are parsed as follows:
named arguments
Further options to be used during the creation of this widget. See the tcl/tk documentation for all arguments possible for this widget.
unnamed arguments
Container widgets (e.g. tic_frame()
) treat any
unnamed arguments as child objects. Non-container widgets
(e.g tic_button()
) will
raise an error if there are any unnamed widgets.
bind commands to particular events on this element. This may be
a single result of bind_opts()
or a list of them for multiple
events.
a named list of pack options for how to incorporate this element into its
parent container. Default: NULL means to use the standard packing.
See pack_opts()
as a way of creating a valid list of pack options.
Default packing options for children of this object. This
can be overriden by setting pack
explicitly on child elemnets
you want to control packing for.
handle on the tcl/tk object
This is not a direct implementation for an existing tk element. It is implemented
as a ttk::frame
element with horizontal or vertical packing by default.