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

System.Windows.Media.BitmapScalingMode.cs « PresentationCore « FPF « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83b709c5568cc55e281701058ece00fb2fa7b066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace System.Windows.Media
{
	public  enum BitmapScalingMode 
	{		Unspecified,
		LowQuality,
		HighQuality,
		Linear,
		Fant,
		NearestNeighbor,

	}
}