I am trying to check the size of a text in shape in a powerpoint presentation through openXML but I am not sure how to get it, since it is a RunProperty.
Does somebody know how to get it? I already know how to get the font and the color of the font, could I maybe do it similar to this?
IEnumerable<Drwng.LatinFont> fonts = textShape.Descendants<Drwng.LatinFont>();
foreach (Drwng.LatinFont font in fonts)
{
paragraphText.Append(font.Typeface.Value);
}
String writtenFont = paragraphText.ToString();