skia
    Preparing search index...

    Interface ParagraphBuilderFactory

    interface ParagraphBuilderFactory {
        Make(style: ParagraphStyle, fontManager: FontMgr): ParagraphBuilder;
        MakeFromFontCollection(
            style: ParagraphStyle,
            fontCollection: FontCollection,
        ): ParagraphBuilder;
        MakeFromFontProvider(
            style: ParagraphStyle,
            fontSrc: TypefaceFontProvider,
        ): ParagraphBuilder;
        RequiresClientICU(): boolean;
        ShapeText(text: string, runs: FontBlock[], width?: number): ShapedLine[];
    }
    Index

    Methods

    • Whether the paragraph builder requires ICU data to be provided by the client.

      Returns boolean