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

Description

Excerpt

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

Signature
C#
C#
public TextDir TextDirection{ get; set; }
Signature
vb.net
vb.net
Public Property TextDirection() As TextDir

Example
Code Block
csharp
csharp
titleC#
          //--- Get TextDirection
          Style.TextDir textDir = styl.TextDirection;

          //--- Set TextDirection
          styl.TextDirection = Styl.TextDir.RightToLeft;
        
Code Block
vb.net
vb.net
titlevb.net
          '--- Get TextDirection
          Dim textDir As Style.TextDir = styl.TextDirection

          '--- Set TextDirection
          styl.TextDirection = Style.TextDir.RightToLeft