Ejemplo n.º 1
0
 /// <summary>
 /// Converts a relative coordinate along an axis to an axis value.
 /// This method only works in paint events.
 /// </summary>
 /// <param name="position">
 /// The relative position (0-100%).
 /// </param>
 /// <returns>
 /// A double value that represents the axis value.
 /// </returns>
 public double PositionToValue(double position)
 {
     return(axis.PositionToValue(position));
 }