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

MetafileFrameUnit.cs « System.Drawing.Imaging « System.Drawing « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97d59c6c0c1c84f0e477ef12bb19fd5cc88c25a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// System.Drawing.Imaging.MetafileFrameUnit.cs
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
// Author: Dennis Hayes (dennish@raytek.com)
//
using System;
namespace System.Drawing.Imaging 
{
	public enum MetafileFrameUnit {
		Document = 5,
		GdiCompatible = 7,
		Inch = 4,
		Millimeter = 6,
		Pixel = 2,
		Point = 3
	}
}