BuiltInDocumentPropertyCollection.NameOfApplication

BuiltInDocumentPropertyCollection.NameOfApplication property

Gets or sets the name of the application.

public string NameOfApplication { get; set; }

Examples

using System;
using Aspose.Cells;

namespace AsposeCellsExamples
{
    public class BuiltInDocumentPropertyCollectionPropertyNameOfApplicationDemo
    {
        public static void Run()
        {
            // Create a new workbook
            Workbook workbook = new Workbook();
            
            // Set the NameOfApplication property
            workbook.BuiltInDocumentProperties.NameOfApplication = "Aspose.Cells Demo App";
            
            // Display the NameOfApplication property
            Console.WriteLine("Application Name: " + workbook.BuiltInDocumentProperties.NameOfApplication);
            
            // Save the workbook
            workbook.Save("output.ods");
        }
    }
}

See Also