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

EncoderParameterValueType.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: 6a0071ad20d7f614dfb67355bc7790c23629c70e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.Drawing.Imaging.EncoderParameterValueType.cs
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
// Author: Dennis Hayes (dennish@raytek.com)
//
using System;
namespace System.Drawing.Imaging 
{
	public enum EncoderParameterValueType {
		ValueTypeAscii = 2,
		ValueTypeByte = 1,
		ValueTypeLong = 4,
		ValueTypeLongRange = 6,
		ValueTypeRational = 5,
		ValueTypeRationalRange = 8,
		ValueTypeShort = 3,
		ValueTypeUndefined = 7
	}
}