Page tree

Versions Compared

Key

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

Excerpt

Sets or returns the direction of the text with in the cells.

{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}
Signature
C#C#
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}{signature:vb.net
vb.net
}
Public Property TextDirection() As TextDir
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle