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}Inserts one or more columns at the specified position in the table.{excerpt}
{signature:C#}
 public void InsertColumns(int index, int numColumns)
{signature}{signature:vb.net}
Public Sub InsertColumns(ByVal index As Integer, ByVal numColumns As Integer)
{signature}
{parameters}
{param:index}The 0\-based index of the first column to insert.{param}
{param:numColumns}The number of columns to insert.{param}
{example}{code:csharp|title=C#}
tbl.InsertColumns(2, 5);{code}
{code:vb.net|title=vb.net}
tbl.InsertColumns(2, 5){code}

{example}