ApiExamples.ExStyles.RemoveEx C# (CSharp) Méthode

RemoveEx() private méthode

private RemoveEx ( ) : void
Résultat void
        public void RemoveEx()
        {
            //ExStart
            //ExFor:Style.Remove
            //ExSummary:Shows how to pick a style that is defined in the document and remove it.
            Document doc = new Document();
            doc.Styles["Normal"].Remove();
            //ExEnd
        }
    }