Is there a way to extract the AnnotationScaleFactor from a TextNodeElement. I have found a method for getting the AnnotationScaleFactor from TextElements and DimensionElements, but TextNodeElements do not seem to directly have a property for AnnotationScaleFactor. As I understand it TextNodes are a complex elements but I am not sure how to break out the sub-element properties.
Thanks for any suggestions.
Presumably, as the TextNodeElement does not have an AnnotationScaleFactor property, you must find the first TextElement in the text node and get its AnnotationScaleFactor property.
Use TextNodeElement.GetSubElements to obtain an enumeration of its components. There are examples in VBA Help.
Regards, Jon Summers LA Solutions