File: FlowDirectionDesignTypeConverter.cs
Web Access
Project: src\src\Controls\src\Core.Design\Controls.Core.Design.csproj (Microsoft.Maui.Controls.DesignTools)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Microsoft.Maui.Controls.Design
{
	public class FlowDirectionDesignTypeConverter : KnownValuesDesignTypeConverter
	{
		protected override bool ExclusiveToKnownValues => true;
 
		protected override string[] KnownValues
			=> new[]
			{
				"MatchParent",
				"LeftToRight",
				"RightToLeft"
			};
	}
}