Returns the named ranges of the Workbook as an array of NamedObject objects as an collection. Though the named ranges are not returned in any particular order, they are iterable.

public System.Collections.Generic.IEnumerable<NamedObject> NamedRanges{ get; }
Public ReadOnly Property NamedRanges() As System.Collections.Generic.IEnumerable(Of NamedObject)
          NamedObject[] ranges = wb.NamedRanges;
        
          Dim ranges as NamedObject() = wb.NamedRanges