VB.net Excel 将视图设置为页面布局
VB.net Excel set view to Page Layout
我正在尝试使用 vb.net 将 Excel 文档中的视图更改为页面布局。
objExcel = CreateObject("Excel.Application")
objExcel.Visible = True
objExcelWB = objExcel.Workbooks.Add
objExcelWS = objExcelWB.ActiveSheet
我已经完成了编程(在 AutoCAD 和 Excel 中)并且一切正常。
我想在页面布局视图中显示我创建的 Excel 个文档。
我看不到工作表或工作簿访问视图设置的任何方法。
设置 View
property of either the ActiveWindow object, or for all Window objects in the Windows collection for the target Workbook to xlPageLayoutView
(3).
我正在尝试使用 vb.net 将 Excel 文档中的视图更改为页面布局。
objExcel = CreateObject("Excel.Application")
objExcel.Visible = True
objExcelWB = objExcel.Workbooks.Add
objExcelWS = objExcelWB.ActiveSheet
我已经完成了编程(在 AutoCAD 和 Excel 中)并且一切正常。
我想在页面布局视图中显示我创建的 Excel 个文档。
我看不到工作表或工作簿访问视图设置的任何方法。
设置 View
property of either the ActiveWindow object, or for all Window objects in the Windows collection for the target Workbook to xlPageLayoutView
(3).