J
jchazottes
Hello,
I am trying to customize the Word Action Pane in a shared Addin.
The only thing I can do for instance is to make the Action Pane appear
and disapear :
oCommandBars =
(CommandBars)applicationObject.GetType().InvokeMember("CommandBars",
BindingFlags.GetProperty, null, applicationObject, null);
oCommandBars["Task Pane"].Visible = true;
In an other hand I programmed a word template with the VSTO2 and access
the Action Pane with the ActionsPane class. It works well and I added a
web navigator to my action pane but it only works for one document...
Is there a way to get the ActionsPane object on a shared addin like in
a Word template ?
Thank you for your reply.
I am trying to customize the Word Action Pane in a shared Addin.
The only thing I can do for instance is to make the Action Pane appear
and disapear :
oCommandBars =
(CommandBars)applicationObject.GetType().InvokeMember("CommandBars",
BindingFlags.GetProperty, null, applicationObject, null);
oCommandBars["Task Pane"].Visible = true;
In an other hand I programmed a word template with the VSTO2 and access
the Action Pane with the ActionsPane class. It works well and I added a
web navigator to my action pane but it only works for one document...
Is there a way to get the ActionsPane object on a shared addin like in
a Word template ?
Thank you for your reply.