public static xdr.TextBody SetText(this xdr.TextBody textBody, string text, Font font = null, Color?fontColor = null)
        {
            textBody.RemoveAllChildren <a.Paragraph>();
            var p = new a.Paragraph();

            textBody.Append(p);
            p.AddText(text, font, fontColor);
            return(textBody);
        }