2017-01-25 162 views
0

我想在word文檔上編輯插入的圖片(c & p)。 所以我有這個使用c#interop在word文檔中編輯插入的圖片

chart.CopyPicture();            
bookmark.Range.Paste(); 

把它從我的Excel文件複製並粘貼到我的Word文件。但現在我必須在我的文字文件上進行編輯。 我該如何找到它?

+0

要更清楚一些: 在PPT中我能夠做類似 shape = something.Paste();因爲粘貼()或粘貼特殊()返回一個形狀,但它不是在字。它的言辭無效。 所以shape = bookmark.Range.Paste()是不可能的。 – RedDot

回答

0

如果你想改變形狀,使用How to change the size of a picture after inserting it into a word document

shape.Width = 150; 
shape.Height = 150; 
+0

但是,我怎樣才能找到我的照片或將其分配給一個形狀? 在你的鏈接上,他在形狀上使用AddPicture(),但你不能做像 shape.AddPicture(... Paste(),...)或粘貼(shape.range)或類似的東西。 – RedDot

+0

您可以在粘貼之前嘗試調整框架的大小。 http://stackoverflow.com/questions/9666624/position-scale-image-after-programmatically-pasting-it-into-bookmark-range –

+0

我的書籤不放在框架內。 – RedDot

相關問題