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

In This Topic
    ToTwips Method
    In This Topic
    Converts the Length value to twips.
    Syntax
    'Declaration
     
    Public Function ToTwips() As Single
    public float ToTwips()

    Return Value

    A Length value in twips.
    Example
    var length = new Length("1in");
    float twips = length.ToTwips(); // 1440
    See Also