通过 Vsto 将选择形状序列化为 .txt 文件

Serialize Selection shapes to .txt file by Vsto

我想要select一个或一组形状。现在,我知道如何获得 selected 形状。

var selection = Globals.ThisAddIn.Application.ActiveWindow.Selection;

select离子是我select编辑的。我想将 selection 序列化为 .txt 文件。但是有一个问题,System.__ComObject不能序列化。那么接下来我该怎么做呢?

PowerPoint 对象不提供任何序列化对象的方法。但是您可以将所需的 属性 值保存为文本表示形式。因此,稍后当您需要反序列化值时,您可以将新对象添加到幻灯片并根据 .txt 幻灯片中列出的值设置属性。