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<NamedObject>IEnumerable&lt;NamedObject> NamedRanges{ get; }
{signature}{signature:</pre></td></tr></tbody></table>
} Public
Signature
vb.net
vb.net

<p>Public ReadOnly Property NamedRanges() As System.Collections.Generic.IEnumerable(Of NamedObject)
{signature}
{example}{code:csharp|title=C#}</p>
Example
Code Block
csharp
csharp
titleC#


          NamedObject[] ranges = wb.NamedRanges;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


          Dim ranges as NamedObject() = wb.NamedRanges
        
{code} {example}