C1PrintDocument.PageLayout.PageSettings.Landscapeプロパティを設定します。
サンプルコード(VB) |
コードのコピー
|
---|---|
' 用紙方向を横に設定します。 doc.PageLayout.PageSettings.Landscape = True ' 用紙方向を縦に設定します。 doc.PageLayout.PageSettings.Landscape = False |
サンプルコード(C#) |
コードのコピー
|
---|---|
// 用紙方向を横に設定します。 doc.PageLayout.PageSettings.Landscape = true; // 用紙方向を縦に設定します。 doc.PageLayout.PageSettings.Landscape = false; |