Is there a way to more quickly create bulk annotation in a geodb?

178
0
06-11-2020 06:30 AM
MartinTyberg
New Contributor II

Hi,

I can create bulk annotation in a file geodb in ArcObjects much faster than in ArcGIS Pro SDK. In ArcGIS Pro SDK, I'm using the way described in the ProSnippets in the following way:

RowBuffer rowBuffer = targetFeatureClass.CreateRowBuffer();

rowBuffer["LAYERNAME"] = "";

AnnotationFeature annotationFeature = targetFeatureClass.CreateRow(rowBuffer);

<some stuff>

annotationFeature.Store();

Is there another way to do this that's much faster?

Thanks,

Martin

0 Kudos
0 Replies