我正在使用Office 2007 PIA将使用Office 2007 PIA编写的现有插件转换为使用NetOffice的更通用的插件。
使用netoffice框架(一些小代码修补)似乎可以编译所有东西
但我的问题是,从单词doc复制inlineshapes的唯一方法是使用剪贴板,而在netoffice示例中,我的剪贴板值总是为null。在谷歌上阅读似乎这与剪贴板的线程问题有关。基本上我的代码代码已经改变,所以我只能假设它与Netoffice如何创建它的代理有关。
有人可以帮忙吗?
void commandBarBtn_Click(Office.CommandBarButton Ctrl, ref bool CancelDefault)
{
string str = _wordApplication.ActiveDocument.Content.Text;
MessageBox.Show(str);
try
{
int count = _wordApplication.ActiveDocument.InlineShapes.Count;
for (int i = 0; i < count; i++)
{
//Clipboard.Clear();
Word.InlineShape shape = _wordApplication.ActiveDocument.InlineShapes[i + 1];
shape.Select();
_wordApplication.Selection.CopyAsPicture();
IDataObject data = Clipboard.GetDataObject(); //always returns null. help!
if (data.GetDataPresent(DataFormats.Bitmap))
{
Bitmap bmp = (System.Drawing.Bitmap)data.GetData(DataFormats.Bitmap);
string filename = String.Format(@"c:\image{0}.bmp", i.ToString());
bmp.Save(filename);
}
//Application.ActiveDocument.InlineShapes
}
}
catch (Exception e)
{
MessageBox.Show(e.Message);
}
Ctrl.Dispose();
}
答案 0 :(得分:0)
这实质上就是我的工作方式。 我仍然不能100%确定为什么我需要这样做。基本上你只能从静态线程访问剪贴板,而NetOffice系统似乎会在某处或另一个地方产生线程。
以下是我为实现这项工作所做的工作
IDataObject data = null;
Exception threadEx = null;
Thread staThread = new Thread(
delegate()
{
try
{
data = Clipboard.GetDataObject();
if (data.GetDataPresent(DataFormats.Bitmap))
{
Bitmap bmp = (System.Drawing.Bitmap)data.GetData(DataFormats.Bitmap);
string filename = String.Format(@"c:\image{0}.bmp", i.ToString());
bmp.Save(filename);
}
}
catch (Exception ex)
{
threadEx = ex;
}
});
staThread.SetApartmentState(ApartmentState.STA);
staThread.Start();
staThread.Join();