Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道以下 QlikView API 方法:
ActiveDocument.ActiveSheet.FitZoomToWindow ActiveDocument.ActiveSheet.ApplyZoomToAllSheets
但是,我想要一种将缩放级别更改为选定级别的方法,例如“缩放到 75%”。
有没有办法使用 QlikView OCX 控件(通过 C#)或通过 QlikView 的宏中的 API 来做到这一点?
试试这个(取自官方 API 指南):
set mysheet=ActiveDocument.ActiveSheet set sp=mysheet.GetProperties sp.ZoomFactor = 0.9 mysheet.SetProperties sp
问候斯特凡