DistanceScale.cs 524 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.ComponentModel;
  3. using System.Collections.Generic;
  4. using System.Diagnostics;
  5. using System.Text;
  6. namespace FastReport.Map
  7. {
  8. /// <summary>
  9. /// Represents a distance scale.
  10. /// </summary>
  11. public class DistanceScale : ScaleBase
  12. {
  13. #region Constructors
  14. /// <summary>
  15. /// Initializes a new instance of the <see cref="DistanceScale"/> class.
  16. /// </summary>
  17. public DistanceScale()
  18. {
  19. }
  20. #endregion // Constructors
  21. }
  22. }