Exemplo n.º 1
0
		//CONSTRUCTORS
		Document()
		{
			this.paragraphs = new List<Paragraph>();
			this.RenderedTextPos = new TextPosition();
			this.DisplayedTextPos = new TextPosition();
			this.SelectedTextPos = new List<TextPosition>();
		}
Exemplo n.º 2
0
		//FUNCTIONS
		void AddParagraph(TextPosition tp)
		{
			paragraphs.Add(new Paragraph(this));
			throw new NotImplementedException("only partially implemented");
		}