问题
I published the VSTO app, where I copy a Range with a formatted text.
On most users machines the application works properly while some users have the error "This command is not available." thrown whenever the following piece of code is being excetuded.
var sourceDocument = Globals.ThisAddIn.Application.ActiveDocument;
sourceDocument.Range().Copy();
Document documentOld = new Document();
documentOld.Range().PasteAndFormat(WdRecoveryType.wdFormatOriginalFormatting); //here the error occurs
Document documentNew = new Document();
documentNew.Range().PasteAndFormat(WdRecoveryType.wdFormatOriginalFormatting);
Could you recommend me something? Should I check any settings of the Word App on the User's machine?
Your help would be highly appreciated!
Thank you in advance!
回答1:
Seems like sometimes the PasteAndFormat
/ Paste Special
in Word is disabled upon creating a new Document. This can be reproduced manually in Word opening a new document, copying something to the clipboard and checking the paste options menu:
What I do in order to counteract this, is to do a normal paste, then delete the content and then use the PasteAndFormat
.
来源:https://stackoverflow.com/questions/62137325/this-command-is-not-available-error-occurs-when-trying-to-execute-pasteandfor