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

In This Topic
    OriginalUnit Property
    In This Topic
    Gets an original unit type that was specified for this Length.
    Syntax
    'Declaration
     
    Public ReadOnly Property OriginalUnit As Length.Unit
    public Length.Unit OriginalUnit {get;}

    Property Value

    An original Length.Unit of measurement.
    Example
    var length = new Length(1, Length.Unit.Centimeters);
    var unit = length.OriginalUnit; // Centimeters
    See Also