FlexPivot for WinForms
PrintPreviewDialog プロパティ
使用例 

C1.Win.C1FlexGrid.4.5.2 アセンブリ > C1.Win.C1FlexGrid 名前空間 > GridPrinter クラス : PrintPreviewDialog プロパティ
Gets a reference to the PrintPreviewDialog used to display the grid's print preview.
シンタックス
'宣言
 
Public ReadOnly Property PrintPreviewDialog As System.Windows.Forms.PrintPreviewDialog
public System.Windows.Forms.PrintPreviewDialog PrintPreviewDialog {get;}
解説
Use this property to customize the size and position of the preview dialog when printing the grid with the PrintGridFlags.ShowPrintDialog option.
使用例
The code below uses the PrintPreviewDialog property to display the preview dialog with a custom caption and in a maximized state:
Form dlg = _flex.PrintParameters.PrintPreviewDialog as Form;
dlg.Text = "Custom Caption";
dlg.StartPosition = FormStartPosition.Manual;
dlg.WindowState = FormWindowState.Maximized;
_flex.PrintGrid("test", PrintGridFlags.ShowPreviewDialog);
参照

GridPrinter クラス
GridPrinter メンバ