Aspose.Words.Examples.CSharp.Rendering_and_Printing.OutlineLayoutEntitiesRenderer.PointToPixel C# (CSharp) Метод

PointToPixel() приватный статический Метод

Converts a value in points to pixels.
private static PointToPixel ( float value, double resolution ) : int
value float
resolution double
Результат int
        private static int PointToPixel(float value, double resolution)
        {
            return Convert.ToInt32(ConvertUtil.PointToPixel(value, resolution));
        }
    }