' For complete examples and data files, please go to https://github.com/groupdocsmetadata/GroupDocs_Metadata_NET
' initialize XlsFormat
Dim xlsFormat As New XlsFormat(Common.MapSourceFilePath(filePath))
' initialize XlsMetadata
Dim metadata As XlsMetadata = xlsFormat.DocumentProperties
Dim propertyName As String = "New Custom Property"
' check if property is not built-in
If Not metadata.IsBuiltIn(propertyName) Then
' remove property
metadata.Remove(propertyName)
Else
Console.WriteLine("Can not remove built-in property.")
End If
' save file in destination folder
xlsFormat.Save(Common.MapDestinationFilePath(filePath))