GetPDFDeclarationsCount
合规
描述
返回文档携带的 PDF Declarations 条目数量
语法
Delphi
Function GetPDFDeclarationsCount: Integer;返回值
| N | 声明条目数量;不存在时为 0 |
|---|
说明
使用 GetPDFDeclarationsURI、GetPDFDeclarationsRole 和 GetPDFDeclarationsVersion 读取每个条目的 URI、角色和版本
示例
for I:= 0 to PDF.GetPDFDeclarationsCount- 1 do Memo1.Lines.Add(PDF.GetPDFDeclarationsURI(I));