PdfFormRadioButtonsGroupAddRadioButton(PdfFormRadioButton, Single, Boolean, Single, Boolean) Method
Adds a radio button to this group at a given X and Y position in PDF page where the last object was rendered.
The position can be absolute in PDF page or relative to last object rendered
Namespace: HiQPdfClientAssembly: HiQPdfClient.NetCore (in HiQPdfClient.NetCore.dll) Version: 16.0.0
public void AddRadioButton(
PdfFormRadioButton radioButton,
float xPos,
bool xRelPos,
float yPos,
bool yRelPos
)
Public Sub AddRadioButton (
radioButton As PdfFormRadioButton,
xPos As Single,
xRelPos As Boolean,
yPos As Single,
yRelPos As Boolean
)
public:
void AddRadioButton(
PdfFormRadioButton^ radioButton,
float xPos,
bool xRelPos,
float yPos,
bool yRelPos
)
member AddRadioButton :
radioButton : PdfFormRadioButton *
xPos : float32 *
xRelPos : bool *
yPos : float32 *
yRelPos : bool -> unit
Parameters
- radioButton PdfFormRadioButton
- The radio button to add
- xPos Single
- The X position of the object in the PDF page where the last object was rendered
- xRelPos Boolean
- If this value is true the X position is relative to the left X coordinate of the last object rendered.
If this value is false the X position is absolute in PDF page
- yPos Single
- The Y position of the object in the PDF page where the last object was rendered
- yRelPos Boolean
- If this value is true the Y position is relative to the bottom Y coordinate of the last object rendered.
If this value is false the Y position is absolute in PDF page