Interface UILabel

All Superinterfaces:
UIComponent

public interface UILabel
extends UIComponent
Class that defines a simple text label in a UI.
Since:
9.10.2
  • Method Summary

    Modifier and Type Method Description
    static UILabel create​(String text)
    Returns a UI label with the given text.
    String getText()
    Returns the text set in this label.

    Methods inherited from interface com.solibri.smc.api.ui.UIComponent

    getEnabler, setEnabler
  • Method Details

    • create

      static UILabel create​(String text)
      Returns a UI label with the given text.
      Parameters:
      text - the text
      Returns:
      a UI label with the given text
      Since:
      9.10.2
    • getText

      String getText()
      Returns the text set in this label.
      Returns:
      the text set in this label
      Since:
      9.10.2