WebSegmentedControl
From Xojo Documentation
Supported Platforms Project Types: Web Platforms: macOS, Windows, Linux |
- For desktop applications, see SegmentedControl.
Class (inherits from WebControl)
A control that is a horizontal button made up of multiple segments.
Events | |||||||||||||||||
|
Methods | ||||||||||||||
|
Selected Cell Properties | |||
|
Example
This code in the Action event handler checks to see which segment was selected:
Select Case SegmentIndex
Case 0 // First segment
MsgBox("First Segment")
Case 1 // Second segment
MsgBox("Second segment")
End Select
Case 0 // First segment
MsgBox("First Segment")
Case 1 // Second segment
MsgBox("Second segment")
End Select