MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Length Structure / ToMillimeters Method
Example

In This Topic
ToMillimeters Method
In This Topic
Converts the Length value to millimeters (1mm = 56.7twips).
Syntax
'Declaration
 
Public Function ToMillimeters() As Single
 

Return Value

A Length value in millimeters.
Example
var length = new Length("1in");
float mm = length.ToMillimeters(); // 25.4
See Also