AODL.Document.Helper.SizeConverter.GetHeightInPixel C# (CSharp) Method

GetHeightInPixel() public static method

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.
return double
		public static double GetHeightInPixel(int height, int dpiY, bool cm)
		{
			return GetWidthInPixel(height, dpiY, cm);
		}