// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
using SixLabors.Fonts;
namespace SixLabors.ImageSharp.Drawing.Processing {
///
/// Represents a run of drawable text spanning a series of graphemes within a string.
///
public class RichTextRun : TextRun
{
///
/// Gets or sets the brush used for filling this run.
///
public Brush? Brush { get; set; }
///
/// Gets or sets the pen used for outlining this run.
///
public Pen? Pen { get; set; }
///
/// Gets or sets the pen used for drawing strikeout features for this run.
///
public Pen? StrikeoutPen { get; set; }
///
/// Gets or sets the pen used for drawing underline features for this run.
///
public Pen? UnderlinePen { get; set; }
///
/// Gets or sets the pen used for drawing overline features for this run.
///
public Pen? OverlinePen { get; set; }
}
}