Hi,
You can get the StrokeColor and FillColor properties right off the annotation object.
const { annotManager } = instance;
annotManager.on('annotationChanged', (annots) => {
annots.forEach(annot => {
const { StrokeColor, FillColor } = annot;
console.log(StrokeColor, FillColor);
})
})
Thanks!
Logan