File: Primitives\ScrollOrientation.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
namespace Microsoft.Maui
{
	/// <include file="../../docs/Microsoft.Maui/ScrollOrientation.xml" path="Type[@FullName='Microsoft.Maui.ScrollOrientation']/Docs/*" />
	public enum ScrollOrientation
	{
		/// <summary>
		/// The content scrolls vertically.
		/// </summary>
		Vertical = 0,
 
		/// <summary>
		/// The content scrolls horizontally.
		/// </summary>
		Horizontal,
 
		/// <summary>
		/// The content can scroll both horizontally and vertically.
		/// </summary>
		Both,
 
		/// <summary>
		/// The content cannot scroll.
		/// </summary>
		Neither
	}
}