File: Core\IGridRowDefinition.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
namespace Microsoft.Maui
{
	/// <summary>
	/// Provides the properties for a row in a GridLayout.
	/// </summary>
	public interface IGridRowDefinition
	{
		/// <summary>
		/// Gets the height of the row.
		/// </summary>
		GridLength Height { get; }
	}
}