finish first pass of annotation api

This commit is contained in:
Eliot Jones
2018-12-22 15:54:32 +00:00
parent a5349dd77a
commit d572af8a52
9 changed files with 446 additions and 300 deletions

View File

@@ -21,7 +21,9 @@
{
for (var i = 0; i < document.NumberOfPages; i++)
{
document.GetPage(i + 1);
var page = document.GetPage(i + 1);
Assert.NotNull(page.GetAnnotations().ToList());
}
}
}