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

PenAlignment.cs « System.Drawing.Drawing2D « System.Drawing « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5f49323e96983a1bdc1797e5cd6742ae73226bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// System.Drawing.Drawing2D.PenAlignment.cs
//
// Author:
//   Miguel de Icaza (miguel@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

using System;

namespace System.Drawing {

	public enum PenAlignment {
		Center = 0,
		Inset = 1,
		Outset = 2,
		Left = 3,
		Right =4
	}
}