zoukankan      html  css  js  c++  java
  • How to: Access the Report Parameters Object in Report Scripts 如何:访问报表脚本中的报表参数对象

    This topic describes how you can access data of the report parameters object (inherited from ReportParametersObjectBase and specified using IReportDataV2.ParametersObjectType) in report scripts.

    本主题介绍如何访问报表参数对象的数据(从报表参数对象基础继承并使用 IReportDataV2.参数对象类型)在报表脚本中指定。

    Note 注意
    The approach described in this topic is not supported by the Mobile platform.
    移动平台不支持本主题中描述的方法。

     

    Use the following code to access the Parameters Object from a script.

    使用以下代码从脚本访问参数对象。

    object xafParameters = 
        ((DevExpress.XtraReports.UI.XtraReport)sender).Parameters["XafReportParametersObject"].Value

    For instance, the following script displays the name of the Position selected in the parameters dialog as a label text.

    例如,以下脚本将参数对话框中选择的位置的名称显示为标签文本。

    private void ContactsBaseReport_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e) {
        label1.Text ="";
        DevExpress.XtraReports.Parameters.Parameter param = 
            (DevExpress.XtraReports.Parameters.Parameter)((DevExpress.XtraReports.UI.XtraReport)sender).
                Parameters["XafReportParametersObject"];
        if(param != null) {
            MySolution.DemoParameters xafParameter = 
                (MySolution.DemoParameters)param.Value;
            label1.Text = xafParameter.ContactPosition.Name;
        }
    }
  • 相关阅读:
    golang IO 流抽象与应用
    postman中 form-data、x-www-form-urlencoded、raw、binary的区别
    golang net/http 包
    MySQL高性能优化系列
    Win10系统中VirtualBox桥接时找不到网卡的问题
    Golang中下划线的使用
    pandas 基础操作 更新
    pandas 基础
    机器学习-树模型理论(GDBT,xgboost,lightBoost,随机森林)
    GBDT 详解分析 转+整理
  • 原文地址:https://www.cnblogs.com/foreachlife/p/How-to-Access-the-Report-Parameters-Object-in-Report-Scripts.html
Copyright © 2011-2022 走看看