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 an int that represents the number of columns in this section.

Signature
C#
C#
 public int NumColumns{ get; set; }
Signature
vb.net
vb.net
Public Property NumColumns() As Integer

Example

Code Block
csharp
csharp
titleC#

          //--- Return NumColumns
          int numColumns = oSection.NumColumns;

          //--- Set NumColumns
          oSection.NumColumns = 2;
        
Code Block
vb.net
vb.net
titlevb.net

          '--- Return NumColumns
          Dim numColumns As Integer = oSection.NumColumns

          '--- Set NumColumns
          oSection.NumColumns = 2
        
Example