Esempio n. 1
0
        public void AddLine(fyiReporting.RDL.Line line, float borderWidth)
        {
            var   l      = new ExcelLine(line);
            float top    = line.Top.Points;
            float right  = line.GetX2(Report);
            float bottom = line.Y2;
            float left   = line.Left.Points;

            FillAbsolutePosition(line, ref top, ref left);
            FillAbsolutePosition(line, ref bottom, ref right);

            top    = GetCellAboveRelativePosition(top);
            bottom = top + line.Height.Points;

            l.AbsoluteTop  = top;
            l.AbsoluteLeft = left;
            l.Right        = right;
            l.Bottom       = bottom;
            l.BorderWidth  = borderWidth;
            Lines.Add(l);
        }
Esempio n. 2
0
 public void Line(Line l, Row r)
 {
     return;
 }