-1

C# にはいくつかの docx 作成/変更アプローチがあることを知っています

OpenXML、DocX API など。

Open XML を使用して追跡された変更を有効にする方法を理解しましたが、追跡された変更をロックする方法がわかりませんでした (Word 2013 の機能)。

4

2 に答える 2

1

このコードは私にとってはうまくいきます:

static void Main(string[] args)
{
    using (var document = WordprocessingDocument.Open(@"D:\DocTest\Test1.docx", true))
    {
        AddTrackingLock(document);
    }
}

private static void AddTrackingLock(WordprocessingDocument document)
{
    var documentSettings = document.MainDocumentPart.DocumentSettingsPart;
    var documentProtection = documentSettings
                                .Settings
                                .FirstOrDefault(it =>
                                        it is DocumentProtection &&
                                        (it as DocumentProtection).Edit == DocumentProtectionValues.TrackedChanges)
                                as DocumentProtection;

    if (documentProtection == null)
    {
        var documentProtectionElement = new DocumentProtection();
        documentProtectionElement.Edit = DocumentProtectionValues.TrackedChanges;
        documentProtectionElement.Enforcement = OnOffValue.FromBoolean(true);
        documentSettings.Settings.AppendChild(documentProtectionElement);
    }
    else
    {
        documentProtection.Enforcement = OnOffValue.FromBoolean(true);
    }
}
于 2014-07-14T16:18:09.570 に答える