CustomerData
我在 PowerPoint 文件中写了很多东西。我想获得我在形状中写入的所有 XML 数据。但是我没有找到任何合适的方法来做到这一点。
public void ShowMeta(Microsoft.Office.Interop.PowerPoint.Shape shape)
{
for(int i = 1; i <= shape.CustomerData.Count; i++)
{
// Need to show all the customer XML data written in the shape object
}
}