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

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

Cms to pixel as string.
public static CmToPixelAsString ( double cm ) : string
cm double The cm.
Результат string
		public static string CmToPixelAsString(double cm)
		{
			//return CmToPixel(cm).ToString(System.Globalization.NumberFormatInfo.InvariantInfo)+"px";
			int px			= (int)CmToPixel(cm);
			return px.ToString()+"px";
		}