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}If the [NamedObject|NamedObject] refers to a named range, [Formula|NamedObject.Formula] returns the formula associated with the range, e.g. "=Sheet1\!A1:G10".{excerpt}
{signature:C#}
 public System.String Formula{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Formula() As String
{signature}
{example}{code:csharp|title=C#}
String rangeFormula = namedObj.Formula;{code}
{code:vb.net|title=vb.net}
Dim rangeFormula As String = namedObj.Formula{code}

{example}