GroupDocsGists
10/19/2017 - 11:40 AM

RemoveCustomDocumentPropertiesXlsFormat.cs

// For complete examples and data files, please go to https://github.com/groupdocsmetadata/GroupDocs_Metadata_NET
// initialize XlsFormat
XlsFormat xlsFormat = new XlsFormat(Common.MapSourceFilePath(filePath));

// initialize XlsMetadata
XlsMetadata metadata = xlsFormat.DocumentProperties;

string propertyName = "New Custom Property";

// check if property is not built-in
if (!metadata.IsBuiltIn(propertyName))
{
    // remove property
    metadata.Remove(propertyName);
}
else
{
    Console.WriteLine("Can not remove built-in property.");
}

// save file in destination folder
xlsFormat.Save(Common.MapDestinationFilePath(filePath));