#c# #asp.net-mvc-5 #office-interop
#c# #asp.net-mvc-5 #office-взаимодействие
Вопрос:
Я нашел похожие вопросы, но не совсем одинаковые.
У меня есть шаблон word, который я заполняю текстами, введенными пользователями.
В пользовательском интерфейсе есть текстовое поле и два поля подписи (сторонний компонент, который создает файл изображения).
Если текст не очень длинный, он передается в двух версиях word. Но если текст длинный и в нем есть некоторые вводы, он не работает в Office 2019 и Office 365. В Office 2016 это работает всегда.
Чтобы лучше объяснить,
Я открываю документ :
Microsoft.Office.Interop.Word.Application app = null;
Microsoft.Office.Interop.Word.Document doc = null;
...
app = new Microsoft.Office.Interop.Word.Application();
doc = app.Documents.Open(tempPath);
app.Visible = false;
doc.Bookmarks["comment"].Select();
app.Selection.TypeText(orderComment); //Order comment is typed by the user
...
//this code saves the signature as a png image and it works in any case. The image exists in the folder before calling the rest of the code.
string clientSignaturePath = System.Configuration.ConfigurationManager.AppSettings["TempPath"] Guid.NewGuid().ToString().Substring(0, 6) ".png";
using (FileStream fs = new FileStream(clientSignaturePath, FileMode.Create))
{
using (BinaryWriter bw = new BinaryWriter(fs))
{
byte[] data = Convert.FromBase64String(model.ClientSignature);
bw.Write(data);
bw.Close();
}
fs.Close();
}
//If the orderComment is too long, it gives this error in this method when I call the line rng.Paste(); on Office 2019 and 365 but not on 2016.
error : this method or property is not available because the clipboard is empty or invalid
UserMethods.InsertImage(doc, clientSignaturePath, "client", 79, 175);
В классе UserMethods:
public static void InsertImage(Microsoft.Office.Interop.Word.Document doc, string imagePath, string type, float? imageHeight = null, float? imageWidth = null)
{
Range rng = null;
if (type == "tech")
rng = doc.Tables[7].Cell(1, 1).Range;
else if (type == "client")
rng = doc.Tables[7].Cell(1, 2).Range;
else
rng = doc.Tables[7].Cell(1, 3).Range;
Microsoft.Office.Interop.Word.InlineShape autoScaledInlineShape = rng.InlineShapes.AddPicture(imagePath);
float scaledWidth = imageWidth ?? autoScaledInlineShape.Width;
float scaledHeight = imageHeight ?? autoScaledInlineShape.Height;
autoScaledInlineShape.Delete();
// Create a new Shape and fill it with the picture
Microsoft.Office.Interop.Word.Shape newShape = doc.Shapes.AddShape(1, 0, 0, scaledWidth, scaledHeight);
newShape.Fill.UserPicture(imagePath);
// Convert the Shape to an InlineShape and optional disable Border
Microsoft.Office.Interop.Word.InlineShape finalInlineShape = newShape.ConvertToInlineShape();
//finalInlineShape.Line.Visible = Microsoft.Office.Core.MsoTriState.msoFalse;
// Cut the range of the InlineShape to clipboard
finalInlineShape.Range.Cut();
// And paste it to the target Range
rng.Paste();
}
Моя версия Office, которая работает в любом случае:
И официальная версия сервера (Windows Server 2016), которая не работает в случае большого текста :
Заранее спасибо.
Ответ №1:
Метод Cut может вызвать проблемы безопасности, связанные с доступом к буферу обмена
попробуйте
rng.FormattedText = finalInlineShape.Range.FormattedText;
finalInlineShape.Delete();
и комментарий;
//finalInlineShape.Range.Cut();
Комментарии:
1. Я пробую ваше решение.