public RTFText AppendText(string content, RTFTextStyle style) { RTFText text = new RTFText(this, content, style); return(text); }
public RTFText AppendText(string content) { RTFText text = new RTFText(this, content); return(text); }