3.5
I'd like to be able to grab just annotation feature classes from my database using arcpy.da.Walk(). Right now, that is not possible.
Valid feature types are the following:
- Multipatch—Multipatch feature classes are returned.
- Multipoint—Multipoint feature classes are returned.
- Point—Point feature classes are returned.
- Polygon—Polygon feature classes are returned.
- Polyline—Polyline feature classes are returned.
The work around for this, then, is run a Describe() on every feature class to determine whether it is an Annotation.
The same problem exists for Dimensions.
I'm finding that you can get them if you filter to Polygons, but again, you have to run a describe or ListFields() to figure out if they're actually what you're looking for.
Please add both of them in to Walk().