我需要获取从word文档中选择的文本和图像。我可以在文档选择更改事件中获取选定的文本。对于图像,我可以获取所选图像的计数,但是无法获取图像的URL或图像的字节数组。
下面是我使用的方法
void ThisDocument_SelectionChange(object sender, Microsoft.Office.Tools.Word.SelectionEventArgs e)
{
int imageCount = e.Selection.InlineShapes.Count;
if (imageCount > 0)
{
//Error occurred: Collection doesn’t exist
var img = e.Selection.InlineShapes[0];
System.Windows.Forms.MessageBox.Show("Title" + ss.Title);
}
if (!string.IsNullOrEmpty(e.Selection.Text))
System.Windows.Forms.MessageBox.Show("The selection in the document has changed." + e.Selection.Text);
}
我该如何解决?