我正在尝试使用 GemBox 将整个部分添加到特定事件中。
Section section = new Section(documentModel);
documentModel.Sections.Add(section);
ContentRange backgroundCheckSection = documentModel.Content.Find("@@BackGroundChecks").First();
backgroundCheckSection.Start.InsertRange(section);
此代码不起作用,因为它不能将 ContentRange 对象隐式转换为 Section 对象。目标是将整个部分添加到变量 @@BackgroundChecks 出现的位置。我还没有弄清楚该怎么做,想知道是否有人可以帮助我。