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

Inserts a vertical page break in the worksheet to right of the specified cell.

Signature
C#
C#
 public void InsertVerticalPageBreak(Cell rightOfCell)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Sub InsertVerticalPageBreak(ByVal rightOfCell As Cell)
{signature}
{parameters}
{param:rightOfCell}A [Cell|Cell] object representing the cell at which to insert a vertical page break.{param}
{example}{code:csharp|title=C#}
Parameters
Param
rightOfCell
rightOfCell

A Cell object representing the cell at which to insert a vertical page break.

Example
Code Block
csharp
csharp
titleC#

ws.InsertVerticalPageBreak(ws.Cells["G1"]);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

ws.InsertVerticalPageBreak(ws.Cells("G1"))
{code} {example}