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
Wiki Markup
{description}
{excerpt}Sets or returns an {{int}} that represents the number of columns in this section.{excerpt}
{signature:C#}
 public int NumColumns{ get; set; }
{signature}{signature:vb.net}
Public Property NumColumns() As Integer
{signature}
{example}{code:csharp|title=C#}

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

          //--- Set NumColumns
          oSection.NumColumns = 2;
        {code}
{code:vb.net|title=vb.net}

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

          '--- Set NumColumns
          oSection.NumColumns = 2
        {code}

{example}