Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Inserts a horizontal page break in the worksheet after the specified cell.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Inserts a horizontal page break in the worksheet after the specified cell.{excerpt}
{signature:C#}
 public void InsertHorizontalPageBreak(Cell afterCell)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub InsertHorizontalPageBreak(ByVal afterCell As Cell)
Parameters
{signature}
{parameters}
{param:afterCell}A [Cell|Cell] object representing the cell at which to insert a horizontal page break.{param}
{example}{code:csharp|title=C#}
ws.InsertHorizontalPageBreak(ws.Cells["A25"]);
{code}
{code:vb.net
|title=vb.net
}
ws.InsertHorizontalPageBreak(ws.Cells("A25")){code}

{example}
Param
afterCellafterCell

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

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle