Class ToolbarIconButton

java.lang.Object
com.vaadin.flow.component.Component
com.flowingcode.addons.applayout.ToolbarIconButton
All Implemented Interfaces:
AttachNotifier, DetachNotifier, HasElement, HasEnabled, HasStyle, Serializable

@NpmPackage(value="@polymer/paper-icon-button", version="3.0.2") @JsModule("@polymer/paper-icon-button/paper-icon-button.js") @Tag("paper-icon-button") public class ToolbarIconButton extends Component implements HasEnabled
Toolbar menu item component.
See Also:
  • Constructor Details

    • ToolbarIconButton

      public ToolbarIconButton()
      No argument constructor
    • ToolbarIconButton

      public ToolbarIconButton(String title)
      Create a new instance of ToolbarIconButton with a title
    • ToolbarIconButton

      public ToolbarIconButton(Command command)
      Create a new instance of ToolbarIconButton with a left-button command.
    • ToolbarIconButton

      public ToolbarIconButton(String title, Command command)
      Create a new instance of MenuItem with a title and a left-button command.
    • ToolbarIconButton

      public ToolbarIconButton(String title, IconFactory icon, Command command)
      Create a new instance of ToolbarIconButton with a title, an IconFactory, and left-button command.
    • ToolbarIconButton

      public ToolbarIconButton(String title, String icon, Command command)
      Create a new instance of MenuItem with a title, an icon, and left-button command.
  • Method Details