// -----------------------------------------------------------------------
//
// Copyright 2015 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Controls
{
///
/// Controls the wrapping mode in a .
///
public enum TextWrapping
{
///
/// Text should not wrap.
///
NoWrap,
///
/// Text can wrap.
///
Wrap
}
}