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

PaperSourceKind.cs « System.Drawing.Printing « System.Drawing « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8cd9e0e68ef6b695e3023ce708ca55c4b41602f (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
//
// System.Drawing.PaperSourceKind.cs
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
// Author: Dennis Hayes (dennish@raytek.com)
//
using System;
namespace System.Drawing.Printing
{
	public enum PaperSourceKind {
		AutomaticFeed = 7,
		Cassette = 14,
		Custom = 257,
		Envelope = 5,
		FormSource = 15,
		LargeCapacity = 11,
		LargeFormat = 10,
		Lower = 2,
		Manual = 4,
		ManualFeed = 6,
		Middle = 3,
		SmallFormat = 9,
		TractorFeed = 8,
		Upper = 1
	}
}