Interface GuideLineValueConverter<T>

Type Parameters:
T - Guide line value type.

public interface GuideLineValueConverter<T>
  • Method Summary

    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.
    toValue(double pLocation)
    Converts display position to guide line value.
  • Method Details

    • 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.