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.
 
 
 

15 lines
371 B

namespace Avalonia.Media.TextFormatting
{
/// <summary>
/// A text run that indicates the end of a line.
/// </summary>
public class TextEndOfLine : TextRun
{
public TextEndOfLine(int textSourceLength = DefaultTextSourceLength)
{
Length = textSourceLength;
}
public override int Length { get; }
}
}