EBDN - Community - Question & Answers

  Monday, 29 September 2025
  2 Replies
  459 Visits
0
Votes
Undo
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!