What I need to do is query an iTextSharp AcroField to check if it is rotated, and if so capture the value of the rotation.
So If I have the following field:
Dim af As iTextSharp.text.pdf.AcroFields = stamper.AcroFields
Dim afi As iTextSharp.text.pdf.AcroFields.Item
afi = af.GetFieldItem("fieldName")
What do I need to do to get the rotation (in degrees) of that specific field?