zoukankan      html  css  js  c++  java
  • How to resolve DynamicHeight problem in Morphx report[X++]

    For set dynamic height for controls in report

    on executeSection method:

    method 01

        real                        maxHeight;
        str                         maxStrValue = this.maxStrControlName();
        ReportStringControl         maxStrControl = element.design().controlName("maxStrControlName");
    ;
        maxHeight= maxStrControl.heightOfWordWrappedString100mm(maxStrValue);
    
        if (maxHeight!= maxStrControl.height100mm())         
        {
            maxStrControl.height100mm(maxHeight);
        }


    or same in char:

    method 02

        int    maxHeightChar;
    ;  
    
        maxHeightChar = maxStrControl.widthOfString100mm(maxStrValue) / maxStrControl.width100mm() + 1;     
    
        maxStrControl.height(maxHeightChar , Units::CHAR);

    for example

    public void executeSection()
    {
        //CUS Changed on 09 Oct 2013 at 12:28:55 by Jimmy Xie TECTURA LL000260 Begin
        ReportStringControl maxStrControl = element.design().controlName("commodityNo");
        str                 maxStrValue = this.commodityNo();
        int                 maxHeight = maxStrControl.widthOfString100mm(maxStrValue) / maxStrControl.width100mm() + 2;
    ;
        /* method 1
        maxHeight = maxStrControl.heightOfWordWrappedString100mm(maxStrValue);
        if (maxHeight != maxStrControl.height100mm())
            maxStrControl.height100mm(maxHeight);
        */
    
        //commodityNo.height(maxHeight, Units::char);
        // method 2
        LineNumStr.height(maxHeight, Units::char);
        ItemName.height(maxHeight, Units::char);
        QtyStr.height(maxHeight, Units::char);
        SalesPriceStr.height(maxHeight, Units::char);
        netSalesPriceStr.height(maxHeight, Units::char);
        amountStr.height(maxHeight, Units::char);
        //CUS Changed on 09 Oct 2013 at 12:28:55 by Jimmy Xie TECTURA LL000260 End
    
        serialNumber++;
        super();
        totalTaxValue  += CustInvoiceTrans.lineAmountInclTax();//TaxAmount;
        totalQty       += CustInvoiceTrans.Qty;
    }
  • 相关阅读:
    node拦截器设置
    node中session存储与销毁,及session的生命周期
    node做验证码
    防止iframe被别的网站引用
    表单元素disabled禁用后不能自动提交到服务器
    bootstrap 模态框中弹出层 input不能获得焦点且不可编辑
    post请求和get请求content_type的种类
    Firefly在线一键安装
    Firefly通讯协议-
    Firefly《暗黑世界》碎片合成部分代码
  • 原文地址:https://www.cnblogs.com/Fandyx/p/3358926.html
Copyright © 2011-2022 走看看