Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

Excerpt

Sets or returns the paper size that will be used when Excel renders and prints the worksheet.

Signature
C#
C#
<table class="diff-macro"><thead><tr><th class="diff-macro-title">unmigrated-wiki-markup</th></tr></thead><tbody><tr><td class="diff-macro-body"><pre>  public PagePaperSize PaperSize\{ get; set; \}
</pre></td></tr></tbody></table>
Signature
vb.net
vb.net

<p>Public Property PaperSize() As PagePaperSize</p>

Example
Code Block
csharp
csharp
titleC#
          

...

//--- Get PaperSize
          PageSetup.PagePaperSize size = ps.PaperSize;

          //--- Set PaperSize
          ps.PaperSize = PageSetup.PagePaperSize.A4;
        
Code Block
vb.net
vb.net
titlevb.net
          

...

'--- Get PaperSize
          Dim size As PageSetup.PagePaperSize = ps.PaperSize

          '--- Set PaperSize
          ps.PaperSize = PageSetup.PagePaperSize.A4