' For complete examples and data files, please go to https://github.com/groupdocs-metadata/GroupDocs.Metadata-for-.NET
'' initialize MppFormat
Dim mppFormat As New MppFormat(Common.MapSourceFilePath(filePath))
' get document properties
Dim properties As MppMetadata = mppFormat.GetProperties()
If mppFormat IsNot Nothing Then
' get Author
Console.WriteLine("Author: {0}", properties.Author)
' get Company
Console.WriteLine("Company: {0}", properties.Company)
' get Keywords
Console.WriteLine("Keywords: {0}", properties.Keywords)
End If