如何打开可见的excel全尺寸?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何打开可见的excel全尺寸?相关的知识,希望对你有一定的参考价值。
我在笔记本电脑和家用电脑上运行python脚本:
os.startfile(r'C:\A file.xlsx')
这很好用,但我似乎无法找到如何制作这个完整尺寸的任何地方
关于如何通过python实现全尺寸的任何想法?
我同时使用Apache OpenOffice和Microsoft Excel
答案
您应该能够使用以下方法最大化窗口:
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全尺寸?的主要内容,如果未能解决你的问题,请参考以下文章