Page tree

Versions Compared

Key

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

...

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".

...

{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}
Signature
C#C#
{excerpt}
{signature:C#}
 public System.String Formula{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Formula() As String
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle