Sha256: 9f28e4f6a89700dfe851c3bad9a26a1eed6b3fbb59040ded60af5f413fa2b206
Contents?: true
Size: 576 Bytes
Versions: 5
Compression:
Stored size: 576 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
5 entries across 5 versions & 1 rubygems