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);
		}