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 a String that represents the text for this Element.

{signature}
{example}{code:csharp|title=C#}

          string text = e.Text;
        
{code}
{code:vb.net
|title=vb.net
}

          Dim text As String = e.Text
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a {{String}} that represents the text for this Element.{excerpt}
{signature:C#}
 public System.String Text{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Text() As String
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle