Sha256: 564988ddf8679ce9072e3c65c2a4a4da8b6c65ee8e862aa1f78b99d3f7b41c6d
Contents?: true
Size: 1.22 KB
Versions: 1
Compression:
Stored size: 1.22 KB
Contents
# :stopdoc: # This file is automatically generated by the WXRuby3 documentation # generator. Do not alter this file. # :startdoc: module Wx # This event class is used for the events generated by {Wx::HyperlinkCtrl}. # ### Events using this class # # The following event-handler methods redirect the events to member method or handler blocks for {Wx::HyperlinkEvent} events. # Event handler methods: # # - {Wx::EvtHandler#evt_hyperlink}(id, meth = nil, &block): User clicked on a hyperlink. # # Category: {Wx::Events} # # @wxrb_require USE_HYPERLINKCTRL class HyperlinkEvent < CommandEvent # The constructor is not normally used by the user code. # @param generator [Wx::Object] # @param id [Integer] # @param url [String] # @return [Wx::HyperlinkEvent] def initialize(generator, id, url) end # Returns the URL of the hyperlink where the user has just clicked. # @return [String] def get_url; end alias_method :url, :get_url # Sets the URL associated with the event. # @param url [String] # @return [void] def set_url(url) end alias_method :url=, :set_url end # HyperlinkEvent end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.2-x64-mingw-ucrt | lib/wx/doc/gen/hyperlink_event.rb |