To set the page orientation, use the Landscape property. This property can be set either in the designer or in code. For more information on page settings, see Creating Pages and Overlays.
プロパティウィンドウで Landscape プロパティを探し、True に設定します .
次のコードを Form_Load イベントに追加し、Landscape プロパティを設定します。
To write code in Visual Basic
Visual Basic |
コードのコピー
|
---|---|
' C1PdfDocument オブジェクトを作成します。 Dim pdf As New C1.C1Pdf.C1PdfDocument() ' 横向きのページを使用します。 |
To write code in C#
C# |
コードのコピー
|
---|---|
// C1PdfDocument オブジェクトを作成します。 C1.C1Pdf.C1PdfDocument pdf = new C1.C1Pdf.C1PdfDocument(); // 横向きのページを使用します。pdf.Save(@"c:\mydoc.pdf"); |