wx.html.HtmlLinkInfo¶This class stores all necessary information about hypertext links (as represented by <A> tag in HTML documents).
In current implementation it stores URL and target frame name.
Note
Frames are not currently supported by HTML!
Class Hierarchy¶
Inheritance diagram for class HtmlLinkInfo:
Methods Summary¶Default constructor. |
|
Return pointer to event that generated OnLinkClicked() event. |
|
Return |
|
Return pointer to the cell that was clicked. |
|
Return |
Properties Summary¶See |
|
See |
|
See |
|
See |
Class API¶Possible constructors:
HtmlLinkInfo() -> None
HtmlLinkInfo(href, target='') -> None
This class stores all necessary information about hypertext links (as represented by <A> tag in HTML documents).
__init__ (self)
Default constructor.
None
__init__ (self, href, target=’’)
Construct hypertext link from HREF (aka URL) and TARGET (name of target frame).
href (string)
target (string)
None
Return pointer to event that generated OnLinkClicked() event.
Valid only within wx.html.HtmlWindow.OnLinkClicked , None otherwise.
MouseEvent
Return HREF value of the <A> tag.
str
Return pointer to the cell that was clicked.
Valid only within wx.html.HtmlWindow.OnLinkClicked , None otherwise.
Return TARGET value of the <A> tag (this value is used to specify in which frame should be the page pointed by GetHref Href opened).
str
See GetHtmlCell