mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-09-20 20:07:57 +08:00
move annotations to experimental access, support changing color state for document creation and update readme
This commit is contained in:
@@ -29,7 +29,7 @@
|
||||
{
|
||||
var page = document.GetPage(1);
|
||||
|
||||
var annotations = page.GetAnnotations().ToList();
|
||||
var annotations = page.ExperimentalAccess.GetAnnotations().ToList();
|
||||
|
||||
Assert.NotEmpty(annotations);
|
||||
}
|
||||
|
@@ -23,7 +23,7 @@
|
||||
{
|
||||
var page = document.GetPage(i + 1);
|
||||
|
||||
Assert.NotNull(page.GetAnnotations().ToList());
|
||||
Assert.NotNull(page.ExperimentalAccess.GetAnnotations().ToList());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user