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 a boolean that represents whether or not Word will draw vertical lines between columns.

Signature
C#
C#
 public boolean LinesBetween{ get; set; }
Signature
vb.net
vb.net
Public Property LinesBetween() As Boolean
Remarks

MS Word equivalent: Format menu > Columns... > Line between

Example
Code Block
csharp
csharp
titleC#

          //--- Return LinesBetween
          bool linesBetween = oSection.LinesBetween;

          //--- Set LinesBetween
          oSection.LinesBetween = true;
        
Code Block
vb.net
vb.net
titlevb.net

          '--- Return LinesBetween
          Dim linesBetween As Boolean = oSection.LinesBetween

          '--- Set LinesBetween
          oSection.LinesBetween = True