ComponentOne PDF for .NET
C1.C1Pdf Namespace / C1PdfDocument Class / UseFastTextOut Property

In This Topic
    UseFastTextOut Property (C1PdfDocument)
    In This Topic
    Gets or sets a value indicating whether to use a faster but less precise method of laying out text when generating output.
    Syntax
    'Declaration
     
    
    Public Property UseFastTextOut As Boolean
    public bool UseFastTextOut {get; set;}
    Remarks

    When laying out text, by default the MeasureText Windows API is used. It is precise but rather slow which may be noticeable if the document contains large amounts of text.

    Setting this property to true uses the MeasureString .NET API instead. It is much faster but may result in non-optimal text layout.

    See Also