WebMenuItem separator

Hello!

Is there such a thing as a WebMenuItem separator?

Item 1
Item 2

Item 3

Something like that.

All input is appreciated!

Do you mean for things like WebPopupMenus? No.

we dont discuss beta and pre-release outside of the Testers channel

I dont think there is one in Web 1.0

I meant in Web 1.0

If it helps someone, this is what I ended up doing with he help of Hal and Norman:

Var separador As String
For i As Integer = 0 To 19
  separador = separador + &u2500
Next

// Agregar el separador y desabilitarlo
Var separadorMenu  As WebMenuItem = New WebMenuItem( separador )
separadorMenu.Enabled = False

operacionesMenu.Append ( separadorMenu )