move annotations to experimental access, support changing color state for document creation and update readme

This commit is contained in:
Eliot Jones
2018-12-30 14:12:04 +00:00
parent 55a0e6b646
commit 4d5518a599
14 changed files with 125 additions and 184 deletions

View File

@@ -29,7 +29,7 @@
{
var page = document.GetPage(1);
var annotations = page.GetAnnotations().ToList();
var annotations = page.ExperimentalAccess.GetAnnotations().ToList();
Assert.NotEmpty(annotations);
}

View File

@@ -23,7 +23,7 @@
{
var page = document.GetPage(i + 1);
Assert.NotNull(page.GetAnnotations().ToList());
Assert.NotNull(page.ExperimentalAccess.GetAnnotations().ToList());
}
}
}