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

...

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