ApiExamples.ExDocument.RemoveSmartTagsFromDocument C# (CSharp) Метод

RemoveSmartTagsFromDocument() приватный Метод

private RemoveSmartTagsFromDocument ( ) : void
Результат void
        public void RemoveSmartTagsFromDocument()
        {
            //ExStart
            //ExFor:CompositeNode.RemoveSmartTags
            //ExSummary:Shows how to remove all smart tags from a document.
            Document doc = new Document(MyDir + "Document.doc");
            doc.RemoveSmartTags();
            //ExEnd
        }
ExDocument