PdfPage.AddButton Method (String, PdfPoint, PdfSize)

Adds the new button control with specified unique name to the PdfPage.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public PdfButton AddButton(
	string name,
	PdfPoint position,
	PdfSize size
)
VB
Public Function AddButton ( 
	name As String,
	position As PdfPoint,
	size As PdfSize
) As PdfButton

Parameters

name
Type: System.String
The unique name of the button control.
position
Type: BitMiracle.Docotic.Pdf.PdfPoint
The position of the upper-left corner of the button.
size
Type: BitMiracle.Docotic.Pdf.PdfSize
The size of the button.

Return Value

Type: PdfButton
The newly created PdfButton object.

Remarks

The Rotation of the new button is set to the rotation (Rotation) of the owner page.

See Also