Sha256: 51965f42f4a08dcd220d42132ad0e22ef7601312fc0af040778b12d35046345e
Contents?: true
Size: 1.14 KB
Versions: 3
Compression:
Stored size: 1.14 KB
Contents
# :stopdoc: # This file is automatically generated by the WXRuby3 documentation # generator. Do not alter this file. # :startdoc: module Wx::HTML # This event class is used for the events generated by {Wx::HTML::HtmlWindow}. # # ### Events using this class # # The following event-handler methods redirect the events to member method or handler blocks for {Wx::HTML::HtmlLinkEvent} events. # Event handler methods: # # - {Wx::EvtHandler#evt_html_link_clicked}(id, meth = nil, &block): User clicked on a hyperlink. # # Category: {Wx::HTML}, {Wx::Events} # # @wxrb_require USE_HTML class HtmlLinkEvent < CommandEvent # The constructor is not normally used by the user code. # @param id [Integer] # @param linkinfo [Wx::HTML::HtmlLinkInfo] # @return [Wx::HTML::HtmlLinkEvent] def initialize(id, linkinfo) end # Returns the {Wx::HTML::HtmlLinkInfo} which contains info about the cell clicked and the hyperlink it contains. # @return [Wx::HTML::HtmlLinkInfo] def get_link_info; end alias_method :link_info, :get_link_info end # HtmlLinkEvent end
Version data entries
3 entries across 3 versions & 1 rubygems