Table of Contents

Method AddRadioButton

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

AddRadioButton(PdfPoint, double)

Adds the new radio button control with auto-generated radio button group name to the PdfPage.

public PdfRadioButton AddRadioButton(PdfPoint position, double height)

Parameters

position PdfPoint

The position of the upper-left corner of the radio button.

height double

The height of the radio button.

Returns

PdfRadioButton

The newly created PdfRadioButton object.

Remarks

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

AddRadioButton(PdfPoint, PdfSize, string)

Adds the new radio button control with auto-generated radio button group name and caption to the PdfPage.

public PdfRadioButton AddRadioButton(PdfPoint position, PdfSize size, string caption)

Parameters

position PdfPoint

The position of the upper-left corner of the radio button.

size PdfSize

The size of the radio button with caption.

caption string

The radio button caption.

Returns

PdfRadioButton

The newly created PdfRadioButton object.

Remarks

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

AddRadioButton(PdfRectangle)

Adds the new radio button control with auto-generated radio button group name to the PdfPage.

public PdfRadioButton AddRadioButton(PdfRectangle boundingBox)

Parameters

boundingBox PdfRectangle

The PdfRectangle structure that specifies the location and the size of the radio button. Width of rectangle is not used - the radio button area will be a square with a side equals to rectangle's height.

Returns

PdfRadioButton

The newly created PdfRadioButton object.

Remarks

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

AddRadioButton(PdfRectangle, string)

Adds the new radio button control with auto-generated radio button group name and caption to the PdfPage.

public PdfRadioButton AddRadioButton(PdfRectangle boundingBox, string caption)

Parameters

boundingBox PdfRectangle

The PdfRectangle structure that specifies the location and the size of the radio button with caption.

caption string

The radio button caption.

Returns

PdfRadioButton

The newly created PdfRadioButton object.

Remarks

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

AddRadioButton(double, double, double)

Adds the new radio button control with auto-generated radio button group name to the PdfPage.

public PdfRadioButton AddRadioButton(double left, double top, double height)

Parameters

left double

The x-coordinate of the upper-left corner of the radio button.

top double

The y-coordinate of the upper-left corner of the radio button.

height double

The height of the radio button.

Returns

PdfRadioButton

The newly created PdfRadioButton object.

Remarks

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

AddRadioButton(double, double, double, double, string)

Adds the new radio button control with auto-generated radio button group name and caption to the PdfPage.

public PdfRadioButton AddRadioButton(double left, double top, double width, double height, string caption)

Parameters

left double

The x-coordinate of the upper-left corner of the radio button.

top double

The y-coordinate of the upper-left corner of the radio button.

width double

The width of the radio button with caption.

height double

The height of the radio button.

caption string

The radio button caption.

Returns

PdfRadioButton

The newly created PdfRadioButton object.

Remarks

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

AddRadioButton(string, PdfPoint, double)

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

public PdfRadioButton AddRadioButton(string name, PdfPoint position, double height)

Parameters

name string

The unique name of the radio button group to which the new radio button control should be added.

position PdfPoint

The position of the upper-left corner of the radio button.

height double

The height of the radio button.

Returns

PdfRadioButton

The newly created PdfRadioButton object.

Remarks

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

AddRadioButton(string, PdfPoint, PdfSize, string)

Adds the new radio button control with specified unique radio button group name and caption to the PdfPage.

public PdfRadioButton AddRadioButton(string name, PdfPoint position, PdfSize size, string caption)

Parameters

name string

The unique name of the radio button group to which the new radio button control should be added.

position PdfPoint

The position of the upper-left corner of the radio button.

size PdfSize

The size of the radio button with caption.

caption string

The radio button caption.

Returns

PdfRadioButton

The newly created PdfRadioButton object.

Remarks

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

AddRadioButton(string?, PdfRectangle)

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

public PdfRadioButton AddRadioButton(string? name, PdfRectangle boundingBox)

Parameters

name string

The unique name of the radio button group to which the new radio button control should be added.

boundingBox PdfRectangle

The PdfRectangle structure that specifies the location and the size of the radio button. Width of rectangle is not used - the radio button area will be a square with a side equals to rectangle's height.

Returns

PdfRadioButton

The newly created PdfRadioButton object.

Remarks

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

AddRadioButton(string?, PdfRectangle, string)

Adds the new radio button control with specified unique radio button group name and caption to the PdfPage.

public PdfRadioButton AddRadioButton(string? name, PdfRectangle boundingBox, string caption)

Parameters

name string

The unique name of the radio button group to which the new radio button control should be added.

boundingBox PdfRectangle

The PdfRectangle structure that specifies the location and the size of the radio button with caption.

caption string

The radio button caption.

Returns

PdfRadioButton

The newly created PdfRadioButton object.

Remarks

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

AddRadioButton(string?, double, double, double)

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

public PdfRadioButton AddRadioButton(string? name, double left, double top, double height)

Parameters

name string

The unique name of the radio button group to which the new radio button control should be added.

left double

The x-coordinate of the upper-left corner of the radio button.

top double

The y-coordinate of the upper-left corner of the radio button.

height double

The height of the radio button.

Returns

PdfRadioButton

The newly created PdfRadioButton object.

Remarks

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

AddRadioButton(string?, double, double, double, double, string)

Adds the new radio button control with specified unique radio button group name and caption to the PdfPage.

public PdfRadioButton AddRadioButton(string? name, double left, double top, double width, double height, string caption)

Parameters

name string

The unique name of the radio button group to which the new radio button control should be added.

left double

The x-coordinate of the upper-left corner of the radio button.

top double

The y-coordinate of the upper-left corner of the radio button.

width double

The width of the radio button with caption.

height double

The height of the radio button.

caption string

The radio button caption.

Returns

PdfRadioButton

The newly created PdfRadioButton object.

Remarks

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