如何打开可见的excel全尺寸?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何打开可见的excel全尺寸?相关的知识,希望对你有一定的参考价值。

我在笔记本电脑和家用电脑上运行python脚本:

os.startfile(r'C:\A file.xlsx')

这很好用,但我似乎无法找到如何制作这个完整尺寸的任何地方

关于如何通过python实现全尺寸的任何想法?

我同时使用Apache OpenOffice和Microsoft Excel

image

答案

您应该能够使用以下方法最大化窗口:

import win32gui, win32con, os, time

os.startfile('C:\PathToFile.xlsx')
# Wait as long as needed for the file to open, this value can be adjusted as needed
time.sleep(3)
# Now maximize the current foreground window (should be the one we care about at this point)
hwnd = win32gui.GetForegroundWindow()
win32gui.ShowWindow(hwnd, win32con.SW_MAXIMIZE)

以上是关于如何打开可见的excel全尺寸?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Android 的滚动视图中放大/更改子图像视图尺寸以使图像全尺寸

为啥列表视图的高度是全尺寸?

如何从活动中更改片段中视图的可见性

支持动态或静态片段的不同屏幕尺寸?

Qt在控件未显示时如何获取正确的控件尺寸

如何在不单击的情况下显示片段