I am trying to get Fill and Line color of shapes in PPTX which includes some shapes which is added on PowerPoint app by hand, but I can't. Those shapes's color in the PPTX file is added without any change of colors that means the shapes has default color.
The result of my program using Spire.Presentation is bellow:
shape.Line.FillType = UnDefined
shape.Line.SolidFillColor.ColorType = KnownColor
shape.Line.SolidFillColor.Color = Color [A=255, R=0, G=0, B=0]
shape.Line.SolidFillColor.SystemColor = None
shape.Line.SolidFillColor.KnownColor = Black
shape.Line.SolidFillColor.SchemeColor = None
The exact shape's Fill and Kine color is (47,82,143), transparency is 0%.
How can I get the exact color?
Regard.