Hello,
For the ArcGIS Pro SDK, is there a way to determine if a feature class is an annotation feature class? I had attempted to do this with an annotation layer but it didn't work:
var annotation_ftr_class = feature_class as AnnotationFeatureClass; // returns null
I know that for the ArcObjects SDK, the IFeatureClass.FeatureType property can be used to get the esriFeatureType. And if it's an esriFTAnnotation, it is considered an annotation feature.
Is there something equivalent that can be used for the ArcGIS Pro SDK?
Thank you,
Hannah