WebView
From Xojo Documentation
Supported Platforms Project Types: Web Platforms: macOS, Windows, Linux |
Class (inherits from WebControl)
New in 2010r4
The super class for all other classes that can contain objects. WebPage, WebDialog and WebContainer are all WebViews.
Events | ||||||||||||||||
|
Methods | |||||||||||||||||
|
Examples
This code displays all the WebControls on the page:
Var webObj As WebObject
Var output As String
output = "Controls on this page: " + EndOfLine
For i As Integer = 0 To Self.ControlCount-1
webObj = Self.ControlAtIndex(i)
If webObj IsA WebControl Then
output = output + webObj.Name + EndOfLine
End If
Next
MsgBox(output)
Var output As String
output = "Controls on this page: " + EndOfLine
For i As Integer = 0 To Self.ControlCount-1
webObj = Self.ControlAtIndex(i)
If webObj IsA WebControl Then
output = output + webObj.Name + EndOfLine
End If
Next
MsgBox(output)
See Also
WebControl, WebPage, WebDialog, WebContainer, WebYouTubeMovie