ActiveReport for net WebViewer 设置zoom

来源:互联网 发布:php 关联数组按值排序 编辑:程序博客网 时间:2024/05/29 18:43

 <%@ Register TagPrefix="activereportsweb" Namespace="DataDynamics.ActiveReports.Web" Assembly="ActiveReports.Web, Version=3.3.0.1999, Culture=neutral, PublicKeyToken=cc4967777c49a3ff" %>
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="rptARAging.aspx.vb" Inherits="reportCenter.reportCenter.rptARAging" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
    <HEAD>
        <title>打印</title>
        <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
        <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1">
        <meta name="vs_defaultClientScript" content="JavaScript">
        <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
    </HEAD>
    <body MS_POSITIONING="GridLayout">
        <form id="Form1" method="post" runat="server">
            <ActiveReportsWeb:WebViewer id="arvWebMain" style="Z-INDEX: 101; LEFT: 10px; POSITION: absolute; TOP: 0px" runat="server" height="98%" width="100%" MaxReportRunTime="00:01:00" ViewerType="ActiveXViewer"> </ActiveReportsWeb:WebViewer>              
        </form>
        
        <script language="JScript">
        <!--
            // this script sets the value Zoom and TOC properties of the Ax viewer object when using the
            // .Net Class "DataDynamics.ActiveReports.Web.WebViewer"    
            document.body.onload = bodyOnLoad;
                    
            function bodyOnLoad()
            {
                // get all objects in document
                document.getElementById();
                
                if (document.all["marvWebMain_ActiveX"] == null)
                {
                    // the object is NOT there do nothing
                }
                else
                {
                    //' the object IS there set the props
                    document.all["marvWebMain_ActiveX"].object.TOCVisible = false;
                    document.all["marvWebMain_ActiveX"].object.zoom = -1;
                }
            }
        //-->
        </script>
        
    </body>
</HTML>

这里的zoom值只能设置两种 :-1 页面宽度,-2 整个页面

原创粉丝点击