Methods
- A
- E
- F
- H
- I
- S
- T
Included Modules
Constants
TkCommandNames | = | ['::ttk::notebook'.freeze].freeze |
WidgetClassName | = | 'TNotebook'.freeze |
Class Public methods
style(*args)
Link
Instance Public methods
add(child, keys=nil)
Link
enable_traversal()
Link
# File ext/tk/lib/tkextlib/tile/tnotebook.rb, line 89 def enable_traversal() if Tk::Tile::TILE_SPEC_VERSION_ID < 5 tk_call_without_enc('::tile::enableNotebookTraversal', @path) elsif Tk::Tile::TILE_SPEC_VERSION_ID < 7 tk_call_without_enc('::tile::notebook::enableTraversal', @path) else tk_call_without_enc('::ttk::notebook::enableTraversal', @path) end self end
forget(idx)
Link
hide(idx)
Link
index(idx)
Link
insert(idx, subwin, keys=nil)
Link
select(idx)
Link
selected()
Link
tabcget(tagOrId, option)
Link
# File ext/tk/lib/tkextlib/tile/tnotebook.rb, line 52 def tabcget(tagOrId, option) unless TkItemConfigMethod.__IGNORE_UNKNOWN_CONFIGURE_OPTION__ tabcget_strict(tagOrId, option) else begin tabcget_strict(tagOrId, option) rescue => e begin if current_tabconfiginfo(tagOrId).has_key?(option.to_s) # not tag error & option is known -> error on known option fail e else # not tag error & option is unknown nil end rescue fail e # tag error end end end end
tabcget_strict(tagOrId, option)
Link
tabcget_tkstring(tagOrId, option)
Link