Page tree

Versions Compared

Key

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

Excerpt

Returns the object referenced by this NamedObject. The object may be of any of the following types: Range, Picture, Array, Number. To determine the object type, use NamedObject.Type.

{signature}
{example}{code:csharp|title=C#}
Object nameValue = namedObj.Value;
{code}
{code:vb.net
|title=vb.net
}
Dim nameValue As Object = namedObj.Value{code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns the object referenced by this [NamedObject|NamedObject]. The object may be of any of the following types: Range, Picture, Array, Number. To determine the object type, use [NamedObject.Type|NamedObject.NamedObjectType].{excerpt}
{signature:C#}
 public System.Object Value{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Value() As Object
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle