我想在word文檔上編輯插入的圖片(c & p)。 所以我有這個使用c#interop在word文檔中編輯插入的圖片
chart.CopyPicture();
bookmark.Range.Paste();
把它從我的Excel文件複製並粘貼到我的Word文件。但現在我必須在我的文字文件上進行編輯。 我該如何找到它?
我想在word文檔上編輯插入的圖片(c & p)。 所以我有這個使用c#interop在word文檔中編輯插入的圖片
chart.CopyPicture();
bookmark.Range.Paste();
把它從我的Excel文件複製並粘貼到我的Word文件。但現在我必須在我的文字文件上進行編輯。 我該如何找到它?
如果你想改變形狀,使用How to change the size of a picture after inserting it into a word document
shape.Width = 150;
shape.Height = 150;
看看你能不能找到bookmark.Range.ShapeRange在你的照片或bookmark.Range.InlineShapes
https://msdn.microsoft.com/en-us/library/office/ff195321.aspx
https://msdn.microsoft.com/en-us/library/office/ff837242.aspx
要更清楚一些: 在PPT中我能夠做類似 shape = something.Paste();因爲粘貼()或粘貼特殊()返回一個形狀,但它不是在字。它的言辭無效。 所以shape = bookmark.Range.Paste()是不可能的。 – RedDot