Aspose.Words.Examples.CSharp.Rendering_and_Printing.MultipagePrintDocument.HundredthsInchToPoint C# (CSharp) Метод

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

Converts hundredths of inches to points.
private static HundredthsInchToPoint ( float value ) : float
value float
Результат float
        private static float HundredthsInchToPoint(float value)
        {
            return (float)ConvertUtil.InchToPoint(value / 100);
        }
        // ExEnd:HundredthsInchToPoint