{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:vb.net}
Public ReadOnly Property Value() As Object
{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}