Interface GuideLineValueConverter<T>

  • Type Parameters:
    T - Guide line value type.

    public interface GuideLineValueConverter<T>
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      double toLocation​(T pValue)
      Converts guide line value to display position.
      double toNumber​(T pValue)
      Returns the numeric value for a given guide line value.
      T toValue​(double pLocation)
      Converts display position to guide line value.
    • Method Detail

      • toValue

        T toValue​(double pLocation)
        Converts display position to guide line value.
      • toLocation

        double toLocation​(T pValue)
        Converts guide line value to display position.
      • toNumber

        double toNumber​(T pValue)
        Returns the numeric value for a given guide line value.