//===========================================================================================
        private void ReplaceDrawables(XElement annotation)
        {
            foreach (ConstructorInfo[] constructors in _GraphicsMagickNET.GetDrawables())
            {
                annotation.AddBeforeSelf(CreateElement(constructors));
            }

            annotation.Remove();
        }