{description}
{excerpt}Returns an {{int}} that represents the number of characters in this Element.{excerpt}
{signature:C#}
 public int Length{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Length() As Integer
{signature}
{example}{code:csharp|title=C#}

          int length = e.Length;
        {code}
{code:vb.net|title=vb.net}

          Dim length As Integer = e.Length
        {code}

{example}