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
PdfPointThe position of the upper-left corner of the radio button.
height
doubleThe height of the radio button.
Returns
- PdfRadioButton
The newly created PdfRadioButton object.
Remarks
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
PdfPointThe position of the upper-left corner of the radio button.
size
PdfSizeThe size of the radio button with caption.
caption
stringThe radio button caption.
Returns
- PdfRadioButton
The newly created PdfRadioButton object.
Remarks
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
PdfRectangleThe 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
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
PdfRectangleThe PdfRectangle structure that specifies the location and the size of the radio button with caption.
caption
stringThe radio button caption.
Returns
- PdfRadioButton
The newly created PdfRadioButton object.
Remarks
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
doubleThe x-coordinate of the upper-left corner of the radio button.
top
doubleThe y-coordinate of the upper-left corner of the radio button.
height
doubleThe height of the radio button.
Returns
- PdfRadioButton
The newly created PdfRadioButton object.
Remarks
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
doubleThe x-coordinate of the upper-left corner of the radio button.
top
doubleThe y-coordinate of the upper-left corner of the radio button.
width
doubleThe width of the radio button with caption.
height
doubleThe height of the radio button.
caption
stringThe radio button caption.
Returns
- PdfRadioButton
The newly created PdfRadioButton object.
Remarks
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
stringThe unique name of the radio button group to which the new radio button control should be added.
position
PdfPointThe position of the upper-left corner of the radio button.
height
doubleThe height of the radio button.
Returns
- PdfRadioButton
The newly created PdfRadioButton object.
Remarks
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
stringThe unique name of the radio button group to which the new radio button control should be added.
position
PdfPointThe position of the upper-left corner of the radio button.
size
PdfSizeThe size of the radio button with caption.
caption
stringThe radio button caption.
Returns
- PdfRadioButton
The newly created PdfRadioButton object.
Remarks
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
stringThe unique name of the radio button group to which the new radio button control should be added.
boundingBox
PdfRectangleThe 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
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
stringThe unique name of the radio button group to which the new radio button control should be added.
boundingBox
PdfRectangleThe PdfRectangle structure that specifies the location and the size of the radio button with caption.
caption
stringThe radio button caption.
Returns
- PdfRadioButton
The newly created PdfRadioButton object.
Remarks
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
stringThe unique name of the radio button group to which the new radio button control should be added.
left
doubleThe x-coordinate of the upper-left corner of the radio button.
top
doubleThe y-coordinate of the upper-left corner of the radio button.
height
doubleThe height of the radio button.
Returns
- PdfRadioButton
The newly created PdfRadioButton object.
Remarks
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
stringThe unique name of the radio button group to which the new radio button control should be added.
left
doubleThe x-coordinate of the upper-left corner of the radio button.
top
doubleThe y-coordinate of the upper-left corner of the radio button.
width
doubleThe width of the radio button with caption.
height
doubleThe height of the radio button.
caption
stringThe radio button caption.
Returns
- PdfRadioButton
The newly created PdfRadioButton object.