API reference › PDF/A & Conformance
pdfAddArticle
Add an article thread bead (a linked reading-order region)
C
int32_t __stdcall pdfAddArticle(PPDF IPDF, double PosX, double PosY, double Width, double Height);
Delphi
function pdfAddArticle(const IPDF: PPDF; PosX, PosY, Width, Height: Double): Integer; stdcall;
Purpose. Add an article thread bead (a linked reading-order region) at the given page rectangle — delegates to AddArticleBead.
Parameters.
| Parameter | Description |
|---|---|
IPDF | Document handle. |
PosX, PosY, Width, Height | Bead rectangle on the current page. |
Return value. The new bead's handle; 0 on failure.
C# (P/Invoke)
wrappers/dotnet/LumasPdf.cs
public static extern int pdfAddArticle(IntPtr IPDF, double PosX, double PosY, double Width, double Height);
Area
PDF/A & Conformance
Category
Content Creation
Exported names
pdfAddArticle
String variants
The …A form takes UTF-8, …W
takes UTF-16; a bare name aliases the ANSI form.
See working code
Worked examples — complete programs in ten languages.