Hello,
I would like to know how to retrieve the values for FlipX and FlipY of a shape in the sheet, similar to how we get the values for PosX, PosY, and Angle.
double Xaxis = Convert.ToDouble(AssocObjSymbol.
RelatedObject.Attributes.FindById(AttributeId.PositionX).ValueText());
double Yaxis = Convert.ToDouble(AssocObjSymbol.
RelatedObject.Attributes.FindById(AttributeId.PositionY).ValueText());
double Angle = Convert.ToDouble(AssocObjSymbol.
RelatedObject.Attributes.FindById((AttributeId)479).ValueText());
Thanks in Advance!