如何检测word文档中的形状大小调整

时间:2012-12-03 09:11:00

标签: c# interop ms-word

有没有办法检测word文档中的形状大小调整?

此致

1 个答案:

答案 0 :(得分:2)

Word Object Model中没有任何事件提供此功能。但是你可以保存形状的大小,然后处理例如DocumentBeforeSave,然后:

foreach (Microsoft.Office.Interop.Word.Shape shape in wordDoc.Shapes)
{ 
   if (shape.Width != oldShapeWidth || shape.Height != oldShapeHeight)
   {
   //...
   }
}