예제 #1
0
		public Document(string text = null)
		{
			if (text == null)
				target = new Gwen.RichText.Document();
			else
				target = new Gwen.RichText.Document(text);
		}
예제 #2
0
		public Document(Gwen.RichText.Document document)
		{
			target = document;
		}