Application.CentimetersToPoints method (Excel)

Converts a measurement from centimeters to points (one point equals 0.035 centimeters).

Syntax

expression.CentimetersToPoints (Centimeters)

expression A variable that represents an Application object.

Parameters

Name Required/Optional Data type Description
Centimeters Required Double Specifies the centimeter value to be converted to points.

Return value

Double

Example

This example sets the left margin of Sheet1 to 5 centimeters.

Worksheets("Sheet1").PageSetup.LeftMargin = _ 
 Application.CentimetersToPoints(5)

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.