public static a.Run Init(this a.Run run, string text, Font font, Color?fontColor = null)
        {
            run.Text = new a.Text(text);
            var runProps = new a.RunProperties();

            run.PrependChild(runProps);
            runProps.SetFont(font ?? new Font("Calibri", 11), fontColor);
            return(run);
        }