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
positionPdfPointThe position of the upper-left corner of the radio button.
heightdoubleThe 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
positionPdfPointThe position of the upper-left corner of the radio button.
sizePdfSizeThe size of the radio button with caption.
captionstringThe 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
boundingBoxPdfRectangleThe 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
boundingBoxPdfRectangleThe PdfRectangle structure that specifies the location and the size of the radio button with caption.
captionstringThe 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
leftdoubleThe x-coordinate of the upper-left corner of the radio button.
topdoubleThe y-coordinate of the upper-left corner of the radio button.
heightdoubleThe 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
leftdoubleThe x-coordinate of the upper-left corner of the radio button.
topdoubleThe y-coordinate of the upper-left corner of the radio button.
widthdoubleThe width of the radio button with caption.
heightdoubleThe height of the radio button.
captionstringThe 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
namestringThe unique name of the radio button group to which the new radio button control should be added.
positionPdfPointThe position of the upper-left corner of the radio button.
heightdoubleThe 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
namestringThe unique name of the radio button group to which the new radio button control should be added.
positionPdfPointThe position of the upper-left corner of the radio button.
sizePdfSizeThe size of the radio button with caption.
captionstringThe 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
namestringThe unique name of the radio button group to which the new radio button control should be added.
boundingBoxPdfRectangleThe 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
namestringThe unique name of the radio button group to which the new radio button control should be added.
boundingBoxPdfRectangleThe PdfRectangle structure that specifies the location and the size of the radio button with caption.
captionstringThe 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
namestringThe unique name of the radio button group to which the new radio button control should be added.
leftdoubleThe x-coordinate of the upper-left corner of the radio button.
topdoubleThe y-coordinate of the upper-left corner of the radio button.
heightdoubleThe 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
namestringThe unique name of the radio button group to which the new radio button control should be added.
leftdoubleThe x-coordinate of the upper-left corner of the radio button.
topdoubleThe y-coordinate of the upper-left corner of the radio button.
widthdoubleThe width of the radio button with caption.
heightdoubleThe height of the radio button.
captionstringThe radio button caption.
Returns
- PdfRadioButton
The newly created PdfRadioButton object.