iOSToolbar.RemoveByValue

From Xojo Documentation

Method

iOSToolbar.RemoveByValue(value As iOSToolButton)

Supported on Mobile(iOS).

Removes a specific button from the toolbar.

Sample Code

Remove the first button from the toolbar:

Var removeButton As iOSToolButton
removeButton = Toolbar.Value(0)
Toolbar.RemoveByValue(removeButton)