Sha256: a1919b5c1bd9b3b3e358c97414439c2bb83bcd931ae59c711f9aea6cb7be4551

Contents?: true

Size: 671 Bytes

Versions: 3

Compression:

Stored size: 671 Bytes

Contents

class Wx::Window

  # Creates an appropriate (temporary) DC to paint on and
  # passes that to the given block. Deletes the DC when the block returns.
  # Creates a Wx::PaintDC when called from an evt_paint handler and a
  # Wx::ClientDC otherwise.
  # @yieldparam [Wx::PaintDC,Wx::ClientDC] dc dc to paint on
  # @return [Object] result from block
  def paint; end

  # Similar to #paint but this time creates a Wx::AutoBufferedPaintDC when called
  # from an evt_paint handler and a Wx::ClientDC otherwise.
  # @yieldparam [Wx::AutoBufferedPaintDC,Wx::ClientDC] dc dc to paint on
  # @return [Object] result from block
  def paint_buffered; end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wxruby3-0.9.0.pre.rc.1-x64-mingw-ucrt lib/wx/doc/window.rb
wxruby3-0.9.0.pre.beta.14-x64-mingw-ucrt lib/wx/doc/window.rb
wxruby3-0.9.0.pre.beta.13-x64-mingw-ucrt lib/wx/doc/window.rb