S.W./PDF
[PDF/Javascript] getAnnots (Annotion, Comment, Markup, 주석)
천일몽
2021. 8. 6. 09:02
var annots = this.getAnnots();
console.clear();
for (var i = 0; i < annots.length; i++)
{
//console.println(annots[i].toString());
//if (annots[i].type == "PolyLine")
{
var a = annots[i].getProps();
for(var o in a)
{
console.println( "annots." + o + "=" + a[o]);
}
console.println( "==========================")
++counter;
}
}
app.alert("Total comments count: " + annots.length + " / : " + counter);