diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2020-06-01 10:02:35 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2020-06-01 10:02:35 +0300 |
| commit | fa4b140630ff8b39bfeb85affe5e42bcb53d02e9 (patch) | |
| tree | 9f2c835903aa6cd3ff0e2b796aaec727e7eb2d8d /Software/Visual_Studio/Tango.RemoteDesktop/Input | |
| parent | 0008603819e92278101b84254fce4755a4386538 (diff) | |
| parent | ac66473a022e6eecf5d8d7a92eaa90a5e334be73 (diff) | |
| download | Tango-fa4b140630ff8b39bfeb85affe5e42bcb53d02e9.tar.gz Tango-fa4b140630ff8b39bfeb85affe5e42bcb53d02e9.zip | |
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/Tango.RemoteDesktop/Input')
| -rw-r--r-- | Software/Visual_Studio/Tango.RemoteDesktop/Input/MouseController.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.RemoteDesktop/Input/MouseController.cs b/Software/Visual_Studio/Tango.RemoteDesktop/Input/MouseController.cs index ce3a3eb09..295aca4b1 100644 --- a/Software/Visual_Studio/Tango.RemoteDesktop/Input/MouseController.cs +++ b/Software/Visual_Studio/Tango.RemoteDesktop/Input/MouseController.cs @@ -77,6 +77,11 @@ namespace Tango.RemoteDesktop.Input simulator.Mouse.LeftButtonDoubleClick(); } + public static void Scroll(int delta) + { + simulator.Mouse.VerticalScroll(delta); + } + [StructLayout(LayoutKind.Sequential)] public struct MousePoint { |
