• Articles
  • API Documentation
Search Results for

    Show / Hide Table of Contents
    • SixLabors.ImageSharp.Drawing
      • ArcLineSegment
      • ClipPathExtensions
      • ClippingOperation
      • ComplexPolygon
      • CubicBezierLineSegment
      • EllipsePolygon
      • EmptyPath
      • EndCapStyle
      • ILineSegment
      • IntersectionRule
      • IPath
      • IPathCollection
      • ISimplePath
      • JointStyle
      • LinearLineSegment
      • OutlinePathExtensions
      • Path
      • PathBuilder
      • PathCollection
      • PathExtensions
      • PathTypes
      • Polygon
      • RectangularPolygon
      • RegularPolygon
      • SegmentInfo
      • Star
      • TextBuilder
    • SixLabors.ImageSharp.Drawing.Processing
      • Brush
      • BrushApplicator<TPixel>
      • Brushes
      • ClearExtensions
      • ClearPathExtensions
      • ClearRectangleExtensions
      • ClipPathExtensions
      • ColorStop
      • DrawBezierExtensions
      • DrawingOptions
      • DrawingOptionsDefaultsExtensions
      • DrawLineExtensions
      • DrawPathCollectionExtensions
      • DrawPathExtensions
      • DrawPolygonExtensions
      • DrawRectangleExtensions
      • DrawTextExtensions
      • EllipticGradientBrush
      • FillExtensions
      • FillPathBuilderExtensions
      • FillPathCollectionExtensions
      • FillPathExtensions
      • FillPolygonExtensions
      • FillRectangleExtensions
      • GradientBrush
      • GradientRepetitionMode
      • ImageBrush
      • LinearGradientBrush
      • PathGradientBrush
      • PatternBrush
      • PatternPen
      • Pen
      • PenOptions
      • Pens
      • RadialGradientBrush
      • RecolorBrush
      • RichTextOptions
      • RichTextRun
      • ShapeGraphicOptionsDefaultsExtensions
      • ShapeOptions
      • SolidBrush
      • SolidPen
    • SixLabors.ImageSharp.Drawing.Processing.Processors.Drawing
      • ClipPathProcessor
      • DrawPathProcessor
      • FillPathProcessor
      • FillProcessor
    • SixLabors.ImageSharp.Drawing.Processing.Processors.Text
      • DrawTextProcessor
    • SixLabors.ImageSharp.Drawing.Shapes.PolygonClipper
      • ClipperException
      • ClippingType

    Class RichTextOptions

    Provides configuration options for rendering and shaping of rich text.

    Inheritance
    Object
    RichTextOptions
    Namespace: SixLabors.ImageSharp.Drawing.Processing
    Assembly: SixLabors.ImageSharp.Drawing.dll
    Syntax
    public class RichTextOptions : TextOptions

    Constructors

    | Improve this Doc View Source

    RichTextOptions(Font)

    Initializes a new instance of the RichTextOptions class.

    Declaration
    public RichTextOptions(Font font)
    Parameters
    Type Name Description
    Font font

    The font.

    | Improve this Doc View Source

    RichTextOptions(RichTextOptions)

    Initializes a new instance of the RichTextOptions class from properties copied from the given instance.

    Declaration
    public RichTextOptions(RichTextOptions options)
    Parameters
    Type Name Description
    RichTextOptions options

    The options whose properties are copied into this instance.

    Properties

    | Improve this Doc View Source

    Path

    Gets or sets an optional path to draw the text along.

    Declaration
    public IPath Path { get; set; }
    Property Value
    Type Description
    IPath
    Remarks

    When this property is not null the property is automatically applied as a translation to a copy of the path for processing.

    | Improve this Doc View Source

    TextRuns

    Gets or sets an optional collection of text runs to apply to the body of text.

    Declaration
    public IReadOnlyList<RichTextRun> TextRuns { get; set; }
    Property Value
    Type Description
    IReadOnlyList<RichTextRun>
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX