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}{signature:
}
Signature
vb.net
vb.net
Public Property LinesBetween() As Boolean
{signature}
{remarks}MS Word 
Remarks

MS Word equivalent:

Format

menu

>

Columns...

>

Line

between {remarks} {example}{code:csharp|title=C#}

between

Example
Code Block
csharp
csharp
titleC#


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

          //--- Set LinesBetween
          oSection.LinesBetween = true;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


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

          '--- Set LinesBetween
          oSection.LinesBetween = True
        
{code} {example}