[]
        
(Showing Draft Content)

GrapeCity.Documents.Pdf.ITextLayoutHandler

Interface ITextLayoutHandler

Namespace
GrapeCity.Documents.Pdf
Assembly
GcDocs.Pdf.dll

Provides a mechanism for receiving callback notifications when a TextLayout is rendered on a GcPdfGraphics.

public interface ITextLayoutHandler

Methods

AddTextArea(RectangleF)

Adds a rectangular area associated with a text.

void AddTextArea(RectangleF bounds)

Parameters

bounds System.Drawing.RectangleF

TextTagBegin(GcPdfGraphics, TextLayout, object)

Called when a text block associated with the specified tag is started.

void TextTagBegin(GcPdfGraphics graphics, TextLayout textLayout, object tag)

Parameters

graphics GcPdfGraphics

The target graphics.

textLayout TextLayout

The text layout.

tag object

The tag.

TextTagEnd(GcPdfGraphics, TextLayout, object)

Called when a text block is finished.

void TextTagEnd(GcPdfGraphics graphics, TextLayout textLayout, object tag)

Parameters

graphics GcPdfGraphics

The target graphics.

textLayout TextLayout

The text layout.

tag object

The tag.