2009-12-07 Rolf Bjarne Kvinge <RKvinge@novell.com>
[moon.git] / class / System.Windows / System.Windows.Automation / ScrollPatternIdentifiers.cs
blobe3ea070414742385a01a907c96d270cf510d553f
1 /*
2 * ScrollPatternIdentifiers.cs.
4 * Contact:
5 * Moonlight List (moonlight-list@lists.ximian.com)
7 * Copyright 2008 Novell, Inc. (http://www.novell.com)
9 * See the LICENSE file included with the distribution for details.
13 using System;
15 namespace System.Windows.Automation
17 public static class ScrollPatternIdentifiers
19 public static readonly AutomationProperty HorizontallyScrollableProperty = new AutomationProperty ();
20 public static readonly AutomationProperty HorizontalScrollPercentProperty = new AutomationProperty ();
21 public static readonly AutomationProperty HorizontalViewSizeProperty = new AutomationProperty ();
22 public static readonly AutomationProperty VerticallyScrollableProperty = new AutomationProperty ();
23 public static readonly AutomationProperty VerticalScrollPercentProperty = new AutomationProperty ();
24 public static readonly AutomationProperty VerticalViewSizeProperty = new AutomationProperty ();
25 public const double NoScroll = -1.0;