public override void Arrange() { _document = new Document(); _page = _document.AddPage(); _sut = _document.CreateCanvas(); _page.AddCanvas(_sut); }
public override void Arrange() { _document = new Document(); _page = _document.AddPage(); _sut = _document.CreateCanvas(); _page.AddCanvas(_sut); _sut.SetStrokeColor(Color.Blue); _sut.SetFillColor(Color.White); }
public override void Arrange() { _sut = new Document(); _textbox = _sut.CreateTextBox(new Rectangle(new Point(50, 50), new Size(50, 50))); _textbox.SetColor(Color.Blue); _textbox.SetFont(new FontProperties { Name = "Helvetica", Size = 10 }); _textbox.AddText("dit is een testje dat iets langer is."); _canvas = _sut.CreateCanvas(); _canvas.SetFillColor(Color.Black); _canvas.SetStrokeColor(Color.Black); _canvas.DrawLine(new Point(0, 0), new Point(50, 50)); }
public override void Arrange() { _sut = new Document(); _textbox1 = CreateTextbox(100, 25); _canvas1 = CreateCanvas(100, 25); _textbox2 = CreateTextbox(90, 60); _canvas2 = CreateCanvas(90, 60); _textbox3 = CreateTextbox(80, 95); _canvas3 = CreateCanvas(80, 95); _textbox4 = CreateTextbox(70, 130); _canvas4 = CreateCanvas(70, 130); _textbox5 = CreateTextbox(65, 165); _canvas5 = CreateCanvas(65, 165); }
public override void Arrange() { _sut = new Document(); var location1 = new Point(50, 25); var size1 = new Size(100, 50); _textbox1 = CreateTextbox(location1, size1); _canvas1 = CreateCanvas(location1, size1); var location2 = new Point(50, 100); var size2 = new Size(75, 50); _textbox2 = CreateTextbox(location2, size2); _canvas2 = CreateCanvas(location2, size2); }
public override void Arrange() { _sut = new Document(); _canvas1 = _sut.CreateCanvas(); _canvas1.SetFillColor(Color.Azure); _canvas1.SetStrokeColor(Color.Black); var location = new Point(20, 45); var size = new Size(100, 50); _canvas1.DrawBox(location, size); for (var i = 30; i < 120; i += 10) { DrawVerticalRuler(i); } _textbox1 = CreateTextbox(location, size, 10, TextAlignment.Justify); }
public override void Arrange() { _sut = new Document(); _title = _sut.CreateTextBox(new Rectangle(new Point(20, 20), new Size(170, 10))); _title.SetColor(Color.Black); _title.SetFont(new FontProperties { Name = "Helvetica", Size = 20 }); _title.AddText("The select Model"); _canvas1 = _sut.CreateCanvas(); _canvas1.SetFillColor(Color.Azure); _canvas1.SetStrokeColor(Color.Black); var location = new Point(20, 45); var size = new Size(170, 110); _canvas1.DrawBox(location, size); _textbox1 = CreateTextbox(location, size, 10); _canvas2 = _sut.CreateCanvas(); _canvas2.SetFillColor(Color.Azure); _canvas2.SetStrokeColor(Color.Black); _canvas2.DrawBox(new Point(20, 20), new Size(170, 115)); _textbox2 = CreateTextbox(new Point(20, 20), new Size(170, 115), 20); }
public void AddCanvas(GraphicsCanvas canvas) { canvas.Size = _size; _contents.AddCanvas(canvas); }
public void AddCanvas(GraphicsCanvas canvas) { _parts.Add(canvas); }