A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
535 B

using Avalonia.Metadata;
namespace Avalonia.Media
{
/// <summary>
/// A brush that draws with a linear gradient.
/// </summary>
[NotClientImplementable]
public interface ILinearGradientBrush : IGradientBrush
{
/// <summary>
/// Gets or sets the start point for the gradient.
/// </summary>
RelativePoint StartPoint { get; }
/// <summary>
/// Gets or sets the end point for the gradient.
/// </summary>
RelativePoint EndPoint { get; }
}
}