Sha256: 3bf8ec695d2dbecb76d45cc634f28552820beccd5346ecc00febca4966693028
Contents?: true
Size: 550 Bytes
Versions: 13
Compression:
Stored size: 550 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 AuiManager # Yield each pane to the given block. # @yieldparam [Wx::AUI::AuiPaneInfo] pane the Aui pane info yielded def each_pane; end # Returns an array of all panes managed by the frame manager. # @return [Array<Wx::AUI::AuiPaneInfo>] all managed panes def get_all_panes; end alias_method :all_panes, :get_all_panes end end end
Version data entries
13 entries across 13 versions & 1 rubygems