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

In This Topic
    IsUndefined Property
    In This Topic
    Gets a value indicating whether the Length is undefined.
    Syntax
    'Declaration
     
    Public ReadOnly Property IsUndefined As Boolean
    public bool IsUndefined {get;}

    Property Value

    A System.Boolean value. true if the Length is undefined; otherwise, false.
    Example
    var length = Length.Empty;
    bool isUndefined = length.IsUndefined; // true
    See Also