aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Touch/Controls/IValueControl.cs
blob: 86158f41c5f806f87c4814f5ef47d9a3e7396335 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.Touch.Controls
{
    public interface IValueControl
    {
        double Value { get; set; }
        double Minimum { get; set; }
        double Maximum { get; set; }
        double JoggingFactor { get; set; }
        bool AutoCalculateJogStep { get; set; }
    }
}