Aspose.Words.Examples.CSharp.Rendering_and_Printing.OutlineLayoutEntitiesRenderer.PointToPixel C# (CSharp) Method

PointToPixel() private static method

Converts a value in points to pixels.
private static PointToPixel ( float value, double resolution ) : int
value float
resolution double
return int
        private static int PointToPixel(float value, double resolution)
        {
            return Convert.ToInt32(ConvertUtil.PointToPixel(value, resolution));
        }
    }