Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PrintFontSample.cs « System.Drawing.Printing « Samples « System.Drawing « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d378a6043173e1dd5a120cea90f4c68f1530a083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//
// Sample to Print diferent font types and sizes
//

using System;
using System.Drawing;
using System.IO;
using System.Drawing.Printing;

public class PrintingTextFile
{

	static private void PrintPageEvent (object sender, PrintPageEventArgs e)
	{
		float left = e.MarginBounds.Left;
		float top = e.MarginBounds.Top;

		Font font = new Font ("Arial", 10);
		e.Graphics.DrawString("This a sample with font " + font.Name + " size:" + font.Size,
			font, new SolidBrush (Color.Red), left, top);

		font = new Font ("Verdana", 16);
		e.Graphics.DrawString ("This a sample with font " + font.Name + " size:" + font.Size,
			font, new SolidBrush (Color.Blue), left, top + 50);

		font = new Font ("Verdana", 22);
		e.Graphics.DrawString ("This a sample with font " + font.Name + " size:" + font.Size,
			font, new SolidBrush (Color.Black), left, top + 150);

		font  = new Font (FontFamily.GenericMonospace, 14);
		e.Graphics.DrawString ("This a sample with font " + font.Name + " size:" + font.Size,
			font, new SolidBrush (Color.Black), left, top + 250);

		font  = new Font ("Arial", 48);
		e.Graphics.DrawString ("Font " + font.Name + " size:" + font.Size,
			font, new SolidBrush (Color.Red), left, top + 300);

		font  = new Font ("Times New Roman", 32);
		e.Graphics.DrawString ("Another sample font " + font.Name + " size:" + font.Size,
			font, new SolidBrush (Color.Black), left, top + 500);

		font  = new Font (FontFamily.GenericSansSerif, 8);
		e.Graphics.DrawString ("Another sample font " + font.Name + " size:" + font.Size,
			font, new SolidBrush (Color.Blue), left, top + 900);

		e.HasMorePages = false;
	}


        public static void Main (string[] args)
        {
		PrintDocument p = new PrintDocument ();
		p.PrintPage += new PrintPageEventHandler (PrintPageEvent);
                p.Print ();
        }
}