Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt
Wiki Markup
Returns the named ranges of the [Workbook|Workbook] as an array of [NamedObject|NamedObject] objects as an {msdn:System.Collections.IEnumerable|IEnumerable} collection.  Though the named ranges are not returned in any particular order, they are iterable.

Signature
C#
C#
<table class="diff-macro"><thead><tr><th class="diff-macro-title">unmigrated-wiki-markup</th></tr></thead><tbody><tr><td class="diff-macro-body"><pre>
 public System.Collections.Generic.IEnumerable&lt;NamedObject> NamedRanges{ get; }
</pre></td></tr></tbody></table>
Signature
vb.net
vb.net
<p>Public ReadOnly Property NamedRanges() As System.Collections.Generic.IEnumerable(Of NamedObject)</p>
Example
Code Block
csharp
csharp
titleC#

          NamedObject[] ranges = wb.NamedRanges;
        
Code Block
vb.net
vb.net
titlevb.net

          Dim ranges as NamedObject() = wb.NamedRanges