有没有办法检测word文档中的形状大小调整?
此致
答案 0 :(得分:2)
Word Object Model中没有任何事件提供此功能。但是你可以保存形状的大小,然后处理例如DocumentBeforeSave,然后:
foreach (Microsoft.Office.Interop.Word.Shape shape in wordDoc.Shapes)
{
if (shape.Width != oldShapeWidth || shape.Height != oldShapeHeight)
{
//...
}
}