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

In This Topic
    ToPica Method
    In This Topic
    Converts the Length value to picas (1pc = 240twips).
    Syntax
    'Declaration
     
    Public Function ToPica() As Single
    public float ToPica()

    Return Value

    A Length value in picas.
    Example
    var length = new Length("1in");
    float picas = length.ToPica(); // 6
    See Also