AODL.Document.Helper.SizeConverter.GetHeightInPixel C# (CSharp) Метод

GetHeightInPixel() публичный статический Метод

Cacluates the relative height in pixel from height in cm or inch by using the vertical resolution.
public static GetHeightInPixel ( int height, int dpiY, bool cm ) : double
height int The height.
dpiY int The dpi vertical.
cm bool if set to true in cm otherwise inch.
Результат double
		public static double GetHeightInPixel(int height, int dpiY, bool cm)
		{
			return GetWidthInPixel(height, dpiY, cm);
		}