gambas-source-code/comp/src/gb.web.gui/.src/WebSeparator.class
gambas 37db818d3d The 'gb.web.form2' component has been renamed as 'gb.web.gui'. Support for popup menus and stock icons were added.
[GB.WEB.GUI]
* NEW: This is the new name of 'gb.web.form2'.
* NEW: Support for popup menus.
* NEW: Support for stock icons.

[GB.WEB.FORM2]
* NEW: Rename the component as 'gb.web.gui'.
2020-03-21 04:27:05 +01:00

18 lines
410 B
Text

' Gambas class file
Export
Inherits WebControl
Public Const _Properties As String = "*"
Public Const _DrawWith As String = "Separator"
Public Const _DefaultSize As String = "24,4"
Public Sub _Render()
If Me.Parent.Arrangement = Arrange.Horizontal Then
Print "<div class=\"gw-separator-vline\"><div></div></div>"
Else
Print "<div class=\"gw-separator-hline\"><div></div></div>"
Endif
End