Я создал шаблон Word с повторяющимся элементом управления содержимым раздела ( RS CC), содержащий другие элементы управления содержимым. Я пытаюсь добавить последовательно много изображений в RS CC.
Аналогичный logi c работает для многих элементов управления содержимым обычного текста.
var controlRepeatingSection = extendedDocument.ContentControls.Add(WdContentControlType.wdContentControlRepeatingSection, currentRange);
controlRepeatingSection.Tag = wordReportKeywordViewModel.Tag;
controlRepeatingSection.Title = wordReportKeywordViewModel.Title;
var repeatingSectionItem= controlRepeatingSection.RepeatingSectionItems[1];
repeatingSectionItem.Range.Select();
var currentSelectedRange = extendedDocument.Application.Selection.Range;
var pictureContentControl = extendedDocument.Controls.AddPictureContentControl(currentSelectedRange, $"ControlName{Guid.NewGuid()}");
pictureContentControl.Tag ="Tag1"
pictureContentControl.Title = "Title1";
var pictureContentControl2 = extendedDocument.Controls.AddPictureContentControl(currentSelectedRange, $"ControlName{Guid.NewGuid()}");
pictureContentControl2.Tag ="Tag2"
pictureContentControl2.Title = "Title2";
Исключение :