public Document(string text = null) { if (text == null) target = new Gwen.RichText.Document(); else target = new Gwen.RichText.Document(text); }
public Document(Gwen.RichText.Document document) { target = document; }