ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Length Structure / ToPoints Method
Example

In This Topic
    ToPoints Method (Length)
    In This Topic
    Converts the existing Length twips to points (1pt = 20twips)
    Syntax
    'Declaration
     
    Public Function ToPoints() As Single
    public float ToPoints()

    Return Value

    A Length value in points.
    Example
    var length = new Length("1in");
    float points = length.ToPoints(); // 72
    See Also