Check Box Module

Detailed Description

group a3d_pdffield_checkbox

(HOOPS Publish Advanced) Module to access and define Check Box field

This module describes the functions and structures that allow you to define a Check Box. A Check Box is an Acrobat Field.

Function Documentation

A3DStatus A3DPDFCheckBoxCreate(A3DPDFDocument *pDoc, const A3DPDFCheckBoxData *pCheckBoxData, A3DPDFCheckBox **ppCheckBox)

Function to create a CheckBox.

The CheckBox is primarily created with this function, and it should be positioned on the page with the function A3DPDFPageInsertCheckBox.

Version
8.0

Parameters:
  • pDoc[inout] The Document object to work with.
  • pCheckBoxData[in] The CheckBox parameters. The name is mandatory.
  • ppCheckBox[out] The CheckBox created.
Return values:

A3D_SUCCESS

Returns:

A3D_SUCCESS in case of success or an error code

A3DStatus A3DPDFPageInsertCheckBox(A3DPDFPage *pPage, A3DPDFCheckBox *pCheckBox, const A3DPDFRectData *pRectData)

Function to insert a CheckBox in a page.

Version
8.0

Parameters:
  • pPage[inout] The Page object to work with.
  • pCheckBox[in] The CheckBox object to insert on the page.
  • pRectData[in] The rectangle to specify the position on the page.
Return values:

A3D_SUCCESS

Returns:

A3D_SUCCESS in case of success or an error code