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

Duplex.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: a158382eea32d7b777ea7da5c4229f7bb692722c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// System.Drawing.Duplex.cs
//
// (C) 2001 Ximian, Inc.  http://www.ximian.com
// Author: Dennis Hayes (dennish@raytek.com)
//
using System;
namespace System.Drawing.Printing 
{
	public enum Duplex {
		Default = -1,
		Horizontal = 3,
		Simplex = 1,
		Vertical = 2
	}
}