// For complete examples and data files, please go to https://github.com/groupdocs-metadata/GroupDocs.Metadata-for-.NET
// initialize MppFormat
MppFormat mppFormat = new MppFormat(Common.MapSourceFilePath(filePath));
// get document properties
MppMetadata properties = mppFormat.GetProperties();
if (mppFormat != null)
{
// get Author
Console.WriteLine("Author: {0}", properties.Author);
// get Company
Console.WriteLine("Company: {0}", properties.Company);
// get Keywords
Console.WriteLine("Keywords: {0}", properties.Keywords);
}