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

PrintingPermissionLevel.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: 0f77f63bf6b2af4e296ce9da9f39c0eb907c8cbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// System.Drawing.PrintingPermissionLevel.cs
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
// Author: Dennis Hayes (dennish@raytek.com)
//
using System;
namespace System.Drawing.Printing 
{
	public enum PrintingPermissionLevel {
		AllPrinting = 3,
		DefaultPrinting = 2,
		NoPrinting = 0,
		SafePrinting = 1
	}
}