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 horizontal page break in the worksheet after the specified cell.

Signature
C#
C#
 public void InsertHorizontalPageBreak(Cell afterCell)
Signature
vb.net
vb.net
Public Sub InsertHorizontalPageBreak(ByVal afterCell As Cell)
Parameters
Param
afterCell
afterCell

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

Example
Code Block
csharp
csharp
titleC#
ws.InsertHorizontalPageBreak(ws.Cells["A25"]);
Code Block
vb.net
vb.net
titlevb.net
ws.InsertHorizontalPageBreak(ws.Cells("A25"))