'''' This code is part of Document Solutions for Word demos.'' Copyright (c) MESCIUS inc. All rights reserved.''ImportsSystem.IOImportsSystem.LinqImportsGrapeCity.Documents.Word '' This sample shows how to clear all formatting in a DOCX.'' To see see the sample document with original formatting,'' run the SampleParagraphs sample.PublicClassClearFormatPublicFunctionCreateDocx() AsGcWordDocumentDim doc = NewGcWordDocument() doc.Load(Path.Combine("Resources", "WordDocs", "SampleParagraphs.docx")) '' ClearFormatting() Is defined on the RangeBase class.'' It can be applied to any range as well as to the whole'' document body (which Is derived from RangeBase too): doc.Body.ClearFormatting()Return docEndFunctionEndClass