有人知道是否可以在一系列定期会议中更改其中一个文件?我用 c# api 更改了其中一个,它更改了系列中的所有文档(例如,在一次 save() 调用期间将修改 5 个系列文档)
var document = view.GetFirstDocument();
if (document != null)
{
do
{
var item = document.GetFirstItem("Repeats");
var repeat = tmpItem != null ? Convert.ToInt32(tmpItem.Text) : 0;
if(repeats)
{
document.ReplaceItemValue("myVal", "1"); //it change all my 5 docs after first save
document.Save(true, false);
}
document = view.GetNextDocument(document);
}
while (document != null);
}