共用方式為


XmlMappedRange.PrintPreview 方法

預覽 XmlMappedRange 控制項在列印時將會呈現的外觀。

命名空間:  Microsoft.Office.Tools.Excel
組件:  Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)

語法

'宣告
Function PrintPreview ( _
    EnableChanges As Object _
) As Object
Object PrintPreview(
    Object EnableChanges
)

參數

  • EnableChanges
    型別:System.Object
    true 表示顯示預覽列印時,可變更邊界和版面設定,否則為 false。

傳回值

型別:System.Object

備註

選擇性參數

如需選擇性參數的詳細資訊,請參閱Office 方案中的選擇性參數

範例

下列程式碼範例使用 PrintPreview 方法來顯示 XmlMappedRange 的預覽列印。 這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange

Private Sub DisplayPrintPreview()
    Me.CustomerLastNameCell.Value2 = "Smith"
    Me.CustomerLastNameCell.PrintPreview(True)
End Sub
private void DisplayPrintPreview()
{
    this.CustomerLastNameCell.Value2 = "Smith";
    this.CustomerLastNameCell.PrintPreview(true);
}

.NET Framework 安全性

請參閱

參考

XmlMappedRange 介面

Microsoft.Office.Tools.Excel 命名空間