[]
Provides a mechanism for receiving callback notifications when a TextLayout is rendered on a GcPdfGraphics.
public interface ITextLayoutHandler
Adds a rectangular area associated with a text.
void AddTextArea(RectangleF bounds)
bounds
System.Drawing.RectangleFCalled when a text block associated with the specified tag is started.
void TextTagBegin(GcPdfGraphics graphics, TextLayout textLayout, object tag)
graphics
GcPdfGraphicsThe target graphics.
textLayout
TextLayoutThe text layout.
tag
objectThe tag.
Called when a text block is finished.
void TextTagEnd(GcPdfGraphics graphics, TextLayout textLayout, object tag)
graphics
GcPdfGraphicsThe target graphics.
textLayout
TextLayoutThe text layout.
tag
objectThe tag.