如何使用动态数据创建PDFsharp表?

时间:2015-06-15 19:53:25

标签: c# regex pdfsharp

我在PDFsharp中填充表格以显示图表图例数据。我的列表中有14个对象,只显示了2个,矩形颜色相同。它们每种都有独特的颜色可供使用。如何正确显示所有这些?

   //Draw the table Row Borders
            xGrap.DrawRectangle(XPens.DarkSeaGreen, XBrushes.DarkSeaGreen, snoColumn); //Use different Color for Colum
            xGrap.DrawRectangle(XPens.DarkSeaGreen, XBrushes.DarkSeaGreen, snoStudentName);

            //Writting Table Header Text
            textformater.DrawString(" Color", tableheader, XBrushes.Black, snoColumn);
            textformater.DrawString(" Subdivision Name", tableheader, XBrushes.Black, snoStudentName);

            foreach (var item in data)
            {
                string colorStr = item.Color;

                Regex regex = new Regex(@"rgb\((?<r>\d{1,3}),(?<g>\d{1,3}),(?<b>\d{1,3})\)");
                Match match = regex.Match(colorStr);
                if (match.Success)
                {
                    int r = int.Parse(match.Groups["r"].Value);
                    int g = int.Parse(match.Groups["g"].Value);
                    int b = int.Parse(match.Groups["b"].Value);

                    y = y + 30;
                    XRect snoColumnVal = new XRect(35, y, 60, 25);
                    XRect snoStudentNameVal = new XRect(100, y, 250, 25);

                    var brush = new XSolidBrush(XColor.FromArgb(r, g, b));
                    xGrap.DrawRectangle(brush, snoColumnVal);
                    textformater.DrawString(item.Name, bodyfont, XBrushes.Black, snoStudentNameVal);

                };
            };

对象列表 pic

这是我目前得到的结果 picture

1 个答案:

答案 0 :(得分:2)

我猜Data [1]的颜色字符串包含一个空白(蓝色只有两位数字)。也许这会导致匹配失败并跳过该行。

作为黑客,您可以尝试regex.Match(colorStr.Replace(" ", ""));。最好修改正则表达式以允许空格。

您没有显示萨凡纳的颜色字符串。