Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

...

Wiki Markup
{description}
{excerpt}Returns the named ranges of the [Worksheet|Worksheet] 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 iterable.

...

{signature}
{example}{code:csharp|title=C#}

          NamedObject[] ranges = ws.NamedRanges;
        
{code}
{code:vb.net
|title=vb.net
}

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

{example}
Signature
C#C#
{excerpt}
{signature:C#}
 public System.Collections.Generic.IEnumerable<NamedObject> NamedRanges{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property NamedRanges() As System.Collections.Generic.IEnumerable(Of NamedObject)
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle