RenderingStyle

public enum RenderingStyle

Specifies if the glyph being drawn is filled, stroked, or both.

  • Glyphs drawn with this style will be filled, ignoring all stroke-related settings in the renderer.

    Declaration

    Swift

    case fill
  • Glyphs drawn with this style will be both filled and stroked at the same time, respecting the stroke-related settings in the renderer.

    Declaration

    Swift

    case fillStroke
  • Glyphs drawn with this style will be stroked, respecting the stroke-related settings in the renderer.

    Declaration

    Swift

    case stroke