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}Sets or returns the direction of the text with in the cells.{excerpt}
{signature:C#}
 public TextDir TextDirection{ get; set; }
{signature}{signature:vb.net}
Public Property TextDirection() As TextDir
{signature}
{example}{code:csharp|title=C#}

          //--- Get TextDirection
          Style.TextDir textDir = styl.TextDirection;

          //--- Set TextDirection
          styl.TextDirection = Styl.TextDir.RightToLeft;
        {code}
{code:vb.net|title=vb.net}

          '--- Get TextDirection
          Dim textDir As Style.TextDir = styl.TextDirection

          '--- Set TextDirection
          styl.TextDirection = Style.TextDir.RightToLeft
        {code}

{example}