'''' This code is part of Document Solutions for Word demos.'' Copyright (c) MESCIUS inc. All rights reserved.''ImportsSystem.IOImportsGrapeCity.Documents.Word '' This sample shows how to enumerate and remove embedded font data from a DOCX.PublicClassRemoveEmbedFontsFunctionCreateDocx() AsGcWordDocumentDim doc = NewGcWordDocument() doc.Load(Path.Combine("Resources", "WordDocs", "EmbedFonts.docx")) ForEach fi In doc.Fonts fi.Embedded.Clear()Next Return docEndFunctionEndClass