Exemplo n.º 1
0
		public Document(string text = null)
		{
			if (text == null)
				target = new Gwen.RichText.Document();
			else
				target = new Gwen.RichText.Document(text);
		}
Exemplo n.º 2
0
		public Document(Gwen.RichText.Document document)
		{
			target = document;
		}