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
vb.net
vb.net
Public Function GetNamedObject(ByVal name As String) As NamedObject
Parameters
Param
name
name

The string representation of the object's name.

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 Block
vb.net
vb.net
titlevb.net
Dim obj As NamedObject = wb.GetNamedObject("MyObject")