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

Returns the NamedObject object that represents the name of a specified array, number, picture, or range. If the named object does not exist, the method returns null.

Signature
C#
C#
 public NamedObject GetNamedObject(System.String name)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Function GetNamedObject(ByVal name As String) As NamedObject
{signature}
{parameters}
{param:name}The string representation of the 
Parameters
Param
name
name

The string representation of the object's

name.

{param} {returns}The {{NamedObject}} object of a specified array, number, picture, or range, or null if the named object does not exist.{returns} {example}{code:csharp|title=C#}

Returns

The NamedObject object of a specified array, number, picture, or range, or null if the named object does not exist.

Example
Code Block
csharp
csharp
titleC#

NamedObject obj = wb.GetNamedObject("MyObject");
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim obj As NamedObject = wb.GetNamedObject("MyObject")
{code} {example}