ApiExamples.ExStyles.RemoveEx C# (CSharp) Method

RemoveEx() private method

private RemoveEx ( ) : void
return 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
        }
    }