Package quadbase.util

Interface IPopupMenu


public interface IPopupMenu
This interface is used to set/get properties associated with the popup menu in chartviewer A handle to an object that implements that interface can be obtained by calling the gethPopupMenu method in QbChart.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    This function is used to check if the 2D/3D menu is enabled in popup menu or not
    boolean
    Get the display status of popup menu in chartviewer
    boolean
    This function is used to check if the type menu is enabled in popup menu or not
    void
    setDimMenuEnabled(boolean b)
    This function enables/disables 2D/3D menu inside the popup menu
    void
    This function enables/disables popup menu in chartviewer
    void
    setTypeMenuEnabled(boolean b)
    This function enables/disables type menu inside the popup menu
  • Method Details

    • isPopupMenuEnabled

      boolean isPopupMenuEnabled()
      Get the display status of popup menu in chartviewer
      Returns:
      True if popup menu is enabled, False otherwise
    • setPopupMenuEnabled

      void setPopupMenuEnabled(boolean b)
      This function enables/disables popup menu in chartviewer
      Parameters:
      b - True if a popup menu needs to be displayed, False otherwise
    • isDimMenuEnabled

      boolean isDimMenuEnabled()
      This function is used to check if the 2D/3D menu is enabled in popup menu or not
      Returns:
      True if 2D/3D menu is enabled, False otherwise
    • setDimMenuEnabled

      void setDimMenuEnabled(boolean b)
      This function enables/disables 2D/3D menu inside the popup menu
      Parameters:
      b - True if a 2D/3D menu needs to be displayed, False otherwise
    • isTypeMenuEnabled

      boolean isTypeMenuEnabled()
      This function is used to check if the type menu is enabled in popup menu or not
      Returns:
      True if type menu is enabled, False otherwise
    • setTypeMenuEnabled

      void setTypeMenuEnabled(boolean b)
      This function enables/disables type menu inside the popup menu
      Parameters:
      b - True if a type menu needs to be displayed, False otherwise