Table of Contents

Method AddActionArea

Namespace
BitMiracle.Docotic.Pdf
Assembly
BitMiracle.Docotic.Pdf.dll

AddActionArea(PdfPoint, PdfSize, PdfAction?)

Adds the new action area to the PdfPage.

public PdfActionArea AddActionArea(PdfPoint position, PdfSize size, PdfAction? action)

Parameters

position PdfPoint

The position of the upper-left corner of the action area.

size PdfSize

The size of the action area.

action PdfAction

The action to be performed when the action area is activated.

Returns

PdfActionArea

The newly created PdfActionArea object.

AddActionArea(PdfRectangle, PdfAction?)

Adds the new action area to the PdfPage.

public PdfActionArea AddActionArea(PdfRectangle boundingBox, PdfAction? action)

Parameters

boundingBox PdfRectangle

The PdfRectangle structure that specifies the location and the size of the action area.

action PdfAction

The action to be performed when the action area is activated.

Returns

PdfActionArea

The newly created PdfActionArea object.

AddActionArea(double, double, double, double, PdfAction?)

Adds the new action area to the PdfPage.

public PdfActionArea AddActionArea(double left, double top, double width, double height, PdfAction? action)

Parameters

left double

The x-coordinate of the upper-left corner of the action area.

top double

The y-coordinate of the upper-left corner of the action area.

width double

The width of the action area.

height double

The height of the action area.

action PdfAction

The action to be performed when the action area is activated.

Returns

PdfActionArea

The newly created PdfActionArea object.