Sha256: dbab032be1490d3a7eef5ee54a06010447a3e42135858ce1286f858663383d38
Contents?: true
Size: 761 Bytes
Versions: 19
Compression:
Stored size: 761 Bytes
Contents
# :stopdoc: # Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. # :startdoc: module Wx module AUI class AuiNotebook # Iterate each notebook page. # Passes each page to the given block. # Returns an Enumerator if no block given. # @yieldparam [Wx::Window] page notebook page # @return [Object,Enumerator] last result of block or Enumerator if no block given. def each_page; end # Finds tab control and its tab index associated with a given window. # @param [Wx::Window] page the notebook page window # @return [Array<Wx::AUI::AuiTabCtrl, Integer>, nil] tab control and index if found else nil def find_tab(page) end end end end
Version data entries
19 entries across 19 versions & 1 rubygems