Page tree

Versions Compared

Key

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

Excerpt

Returns a PageSetup object representing page layout properties of a printed worksheet.

{signature}
{example}{code:csharp|title=C#}
PageSetup ps = ws.PageSetup;
{code}
{code:vb.net
|title=vb.net
}
Dim ps As PageSetup = ws.PageSetup{code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [PageSetup] object representing page layout properties of a printed worksheet.{excerpt}
{signature:C#}
 public PageSetup PageSetup{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property PageSetup() As PageSetup
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle