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 命名空间