⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 listlayoutmanager.cs

📁 在网页上显示pdf文件的类库,可以将pdf文件显示的网页上面
💻 CS
字号:
using System;
using System.Drawing;

// Creation date: 31.03.2003
// Checked: 08.04.2003
// Author: Otto Mayer (mot@root.ch)
// Version: 1.01

// Report.NET copyright 2003-2004 root-software ag, B黵glen Switzerland - O. Mayer, S. Spirig, R. Gartenmann, all rights reserved
// This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation, version 2.1 of the License.
// This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You
// should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA www.opensource.org/licenses/lgpl-license.html

namespace Root.Reports {
  /// <summary>List Layout Manager</summary>
  public class ListLayoutManager : TlmBase {
    //====================================================================================================x
    /// <summary>Column definition (points, 1/72 inch)</summary>
    public class Column : TlmColumn {
      //----------------------------------------------------------------------------------------------------x
      /// <summary>Creates a column definition object.</summary>
      /// <param name="llm">List layout manager of this column</param>
      /// <param name="rWidth">Width of the column (points, 1/72 inch)</param>
      public Column(ListLayoutManager llm, Double rWidth) : base(llm, rWidth) {
      }
    }

    //====================================================================================================x
    /// <summary>Column definition (mm)</summary>
    public class ColumnMM : Column {
      /// <summary>Creates a column definition object with metric values.</summary>
      /// <param name="llm">List layout manager of this column</param>
      /// <param name="rWidthMM">Width of the column (mm)</param>
      public ColumnMM(ListLayoutManager llm, Double rWidthMM) : base(llm, RT.rPointFromMM(rWidthMM)) {
      }
    }

    //====================================================================================================x

    //----------------------------------------------------------------------------------------------------x
    /// <summary>Creates a new list layout manager.</summary>
    /// <param name="report">Report object of this list layout manager</param>
    public ListLayoutManager(Report report) : base(report) {
      //pp_Border = new PenPropMM(report, 0.1, Color.Black);
    }

    //----------------------------------------------------------------------------------------------------x###
    /// <summary>This method will be called after a new row has been created.</summary>
    /// <param name="row"></param>
    internal protected override void OnNewRow(TlmRow row) {
      if (row.iIndex != 0) {
        return;
      }
      foreach (TlmColumn col in al_TlmColumn) {
        TlmCell cell = row.aTlmCell[col.iIndex];
        if (!Double.IsNaN(col.rBorderTop)) {
          cell.rMarginTop = col.rBorderTop;
        }
        if (!Object.ReferenceEquals(col.pp_BorderTop, PenProp.pp_Null)) {
          cell.pp_LineTop = col.pp_BorderTop;
        }
      }
    }

    //----------------------------------------------------------------------------------------------------x###
    /// <summary>This method will be called before the report objects will be written to the container.</summary>
    internal protected override void OnBeforeWrite() {
      foreach (TlmColumn col in al_TlmColumn) {
        TlmCell cell = tlmRow_Committed.aTlmCell[col.iIndex];
        if (!Double.IsNaN(col.rBorderBottom)) {
          cell.rMarginBottom = col.rBorderBottom;
        }
        if (!Object.ReferenceEquals(col.pp_BorderBottom, PenProp.pp_Null)) {
          cell.pp_LineBottom = col.pp_BorderBottom;
        }
      }
    }

  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -