using System;
namespace Microsoft.Windows.Controls
{
///
/// Represents spin directions that could be initiated by the end-user.
///
/// Preview
public enum SpinDirection
{
///
/// Represents a spin initiated by the end-user in order to Increase a value.
///
Increase = 0,
///
/// Represents a spin initiated by the end-user in order to Decrease a value.
///
Decrease = 1
}
}