我想查看或只是从数据库中获取一些数据,但具体方式.
例如,如果数据是:
1 | test | test | 0 | test
2 | test | test | 1 | test
3 | test | test | 1 | test
4 | test | test | 1 | test
5 | test | test | 0 | test
Run Code Online (Sandbox Code Playgroud)
输出应该是:
1 | test | test | FALSE | test
2 | test | test | TRUE | test
3 | test | test | TRUE | test
4 | test | test …Run Code Online (Sandbox Code Playgroud) 如何使用iTextSharp绘制复选框(带有X)。我不希望它成为形象。更像我尝试过的符号,但是没有用:
RadioCheckField fCell = new RadioCheckField(writer, new Rectangle(20,20), "NoDeletion", "Yes");
fCell.CheckType = RadioCheckField.TYPE_CROSS;
PdfFormField footerCheck = null;
footerCheck = fCell.CheckField;
writer.AddAnnotation(footerCheck);
Run Code Online (Sandbox Code Playgroud)
谢谢,