Is it possible to get annotation color from Annotation object

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