function PdfUa2StructureHasIssue(const Elements: TPdfStructureElements;
Issue: TPdfUaValidationIssue): Boolean;
| Elements | TPdfStructureElements |
| Issue | TPdfUaValidationIssue |
BooleanPdfUa2StructureHasIssue は要素配列に対して ValidatePdfUa2StructureElements を実行し、要求された問題が結果のセットに含まれる場合に True を返します
Issue in ValidatePdfUa2StructureElements(Elements) を 1 つの問題について簡潔に書いたものです
有用な PDF/UA-2 の問題値には、pvuaiNamespaceMissing、pvuaiNamespaceRoleMapInvalid、pvuaiNamespaceReuseInvalid、pvuaiNamespaceContainmentInvalid、pvuaiTableGridInvalid、pvuaiAnnotationSemanticInvalid、pvuaiFormulaSemanticInvalid、pvuaiAssociatedFileSemanticInvalid、pvuaiAssociatedFileOwnershipInvalid、pvuaiAssociatedFileReadingOrderInvalid、pvuaiAssociatedFileDiscoverabilityInvalid、pvuaiDocumentSemanticInvalid、pvuaiTocReferenceMissing などがあります
if PdfUa2StructureHasIssue(Pdf.StructureElements, pvuaiTableGridInvalid) then
ShowMessage('Invalid table grid detected');