Sha256: 5a96269ea69657f2bba37b987d3864278b5bcfc3ebf9d08ef230198f89e3cb3a
Contents?: true
Size: 1.11 KB
Versions: 3
Compression:
Stored size: 1.11 KB
Contents
# :stopdoc: # This file is automatically generated by the WXRuby3 documentation # generator. Do not alter this file. # :startdoc: module Wx::RTC # Implements a rich text data object for clipboard transfer. # # Category: Rich Text # @see Wx::DataObjectSimple # @see Wx::RTC::RichTextBuffer # @see Wx::RTC::RichTextCtrl # # # @wxrb_require USE_RICHTEXT class RichTextBufferDataObject < DataObjectSimple # The constructor doesn't copy the pointer, so it shouldn't go away while this object is alive. # @param richTextBuffer [Wx::RTC::RichTextBuffer] # @return [Wx::RTC::RichTextBufferDataObject] def initialize(richTextBuffer=nil) end # After a call to this function, the buffer is owned by the caller and it is responsible for deleting it. # @return [Wx::RTC::RichTextBuffer] def get_rich_text_buffer; end alias_method :rich_text_buffer, :get_rich_text_buffer # Returns the id for the new data format. # @return [String] def self.get_rich_text_buffer_format_id; end end # RichTextBufferDataObject end
Version data entries
3 entries across 3 versions & 1 rubygems