diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-07-11 13:25:02 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-07-11 13:25:02 +0000 |
commit | b66077d3ef7ba594f2a831840783549f4dd70d86 (patch) | |
tree | 2a2a79c65d5e389f4878ed3f131414f85ea4a6a9 /public/fpdf_edit.h | |
parent | ad1f7b410cd6885bd22d9ee49d9f80d3017f131f (diff) | |
download | pdfium-b66077d3ef7ba594f2a831840783549f4dd70d86.tar.xz |
Add FPDFFormObj_CountObjects() API
To find out the number of sub-objects a form object has, similar to how
FPDFPage_CountObjects() does it for page objects.
Change-Id: I7e5775dece42b74fd5b71b1d9622a1aa37bf64ac
Reviewed-on: https://pdfium-review.googlesource.com/37316
Commit-Queue: Nicolás Peña Moreno <npm@chromium.org>
Reviewed-by: Nicolás Peña Moreno <npm@chromium.org>
Diffstat (limited to 'public/fpdf_edit.h')
-rw-r--r-- | public/fpdf_edit.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/public/fpdf_edit.h b/public/fpdf_edit.h index b85537d0b9..e6f193a37b 100644 --- a/public/fpdf_edit.h +++ b/public/fpdf_edit.h @@ -1226,6 +1226,15 @@ FPDFPageObj_CreateTextObj(FPDF_DOCUMENT document, // Returns one of the FPDF_TEXTRENDERMODE_* flags on success, -1 on error. FPDF_EXPORT int FPDF_CALLCONV FPDFText_GetTextRenderMode(FPDF_PAGEOBJECT text); +// Experimental API. +// Get number of page objects inside |form_object|. +// +// form_object - handle to a form object. +// +// Returns the number of objects in |form_object| on success, -1 on error. +FPDF_EXPORT int FPDF_CALLCONV +FPDFFormObj_CountObjects(FPDF_PAGEOBJECT form_object); + #ifdef __cplusplus } // extern "C" #endif // __cplusplus |