Skip to content

Releases: openize-com/openize-open-xml-sdk-net

v25.3.2

27 Mar 05:16
46c5dcd

Choose a tag to compare

What's Changed

Full Changelog: v25.3.0...v25.3.2

v25.3.1

23 Mar 02:20
eb19084

Choose a tag to compare

What's Changed

Full Changelog: v25.3.0...v25.3.1

Writing Metadata for new word documents

            var document = new Openize.Words.Document();

            var docMetadata = new Openize.Words.DocumentProperties();

            docMetadata.Title = "My Title";
            docMetadata.Subject = "My Subject";
            docMetadata.Description = "My Description";
            docMetadata.Keywords = "Openize.OpenXML-SDK";
            docMetadata.Creator = "Openize.OpenXML-SDK for .NET";
            docMetadata.LastModifiedBy = "Openize.OpenXML-SDK for .NET";
            docMetadata.Revision = "1";
            var currentTime = System.DateTime.UtcNow;
            docMetadata.Created = currentTime.ToString("yyyy-MM-ddTHH:mm:ss.fffffffZ");
            docMetadata.Modified = currentTime.ToString("yyyy-MM-ddTHH:mm:ss.fffffffZ");
            document.SetDocumentProperties(docMetadata);

            document.Save("word.docx");

Read metadata of an existing word document

            var document = new Openize.Words.Document("word.docx");

            var coreprops = document.GetDocumentProperties();

            Console.WriteLine("Creator: " + coreprops.Creator);
            Console.WriteLine("Keywords: " + coreprops.Keywords);
            Console.WriteLine("Title: " + coreprops.Title);
            Console.WriteLine("Subject: " + coreprops.Subject);
            Console.WriteLine("Description: " + coreprops.Description);
            Console.WriteLine("LastModifiedBy: " + coreprops.LastModifiedBy);
            Console.WriteLine("Revision: " + coreprops.Revision);
            Console.WriteLine("Created: " + coreprops.Created);
            Console.WriteLine("Modified: " + coreprops.Modified);

v25.3.0

10 Mar 08:19
c118026

Choose a tag to compare

What's Changed

Full Changelog: v25.2.0...v25.3.0

v25.2.0

24 Feb 18:01
4dfd3bc

Choose a tag to compare

  • Added duration and animation type options in Slides animation effects.
  • Added FlyIn animation effects in all slide shapes objects.

v25.1.0

11 Jan 15:29
c6ed9e1

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: https://github.com/openize-com/openize-open-xml-sdk-net/commits/v25.1.0