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
Wiki Markup
{description}
{excerpt}Returns the named [Range|Range] object that specified by name. If the named range does not exist, the method returns null.{excerpt}
{signature:C#}
 public Range GetNamedRange(System.String name)
{signature}{signature:vb.net}
Public Function GetNamedRange(ByVal name As String) As Range
{signature}
{parameters}
{param:name}The name of the range.{param}
{returns}A named {{Range}} object, or null if the range does not exist.{returns}
{example}{code:csharp|title=C#}
Range named = ws.GetNamedRange("MyNamedRange");{code}
{code:vb.net|title=vb.net}
Dim named As Range = ws.GetNamedRange("MyNamedRange"){code}

{example}