ABCpdfRenderingContext Class

A rendering context that pipes drawing commands into an ABCpdf Doc object for PDF output.
Hierarchy
SystemObject
  WebSupergoo.WordGlue4.RenderingABCpdfRenderingContext

 

Namespace:  WebSupergoo.WordGlue4.Rendering
Assembly:  WordGlue4 (in WordGlue4.dll) Version: 4.1.0.0 (4.1.0.0)
Syntax
public class ABCpdfRenderingContext : IRenderingContext, 
        IDisposable

The ABCpdfRenderingContext type exposes the following members.

Constructors
  Name Description
Public method ABCpdfRenderingContext
Construct an ABCpdfRenderingContext.
Top
Properties
  Name Description
Public property AddHyperlinks
Whether to add active hyperlinks to the output PDF.
Public property LoadPrivateFonts
Whether to load private fonts embedded in the docx file. Loading them allows them to be used when constructing the output PDF.
Public property PreferEmbeddedFonts
Whether to prefer embedded fonts in the output PDF. Some types of fonts have to be embedded. For others they can be referenced or embedded. Embedded fonts produce a reliable and consistent viewing experience at the cost of larger documents.
Top
Methods
  Name Description
Public method Dispose
Dispose of the Context.
Public method DrawEllipse
Draw an ellipse using a specific Pen and Brush.
Public method DrawImage
Draw a raster image into a particular rectangle.
Public method DrawLine
Draw a line using a specific Pen.
Public method DrawPath
Draw a path using a specific Pen and Brush.
Public method DrawRectangle
Draw a rectangle using a specific Pen and Brush.
Public method DrawText
Draw text from a TextRun at a specific Point.
Public method FrameEnd
Lets you know when a frame has just been rendered. You can use this for linking semantic information with drawing instructions.
Public method FrameStart
Lets you know when a frame is about to be rendered. You can use this for linking semantic information with drawing instructions.
Public method PopClip
Pop the clip state, restoring to the last clip rect.
Public method PushClip
Push the clip state then assign a new clip rect.
Top
See Also