如何在运行时阅读报表的FieldObject TextFormat属性

2020-09-06 14:47发布

点击此处---> 群内免费提供SAP练习系统(在群公告中)加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)我需要知道(在 vb.net 中...

         点击此处--->   EasySAP.com群内免费提供SAP练习系统(在群公告中)

加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)


我需要知道(在 vb.net 中)绑定的字段对象是否具有属性'TextFormat "设置为" crStandardText"或" crRTFText"。

我无法在运行时读取此属性。 有人能帮我吗? 谢谢

4条回答
95年老男孩
2020-09-06 15:25 .采纳回答

我在VB代码中没有它,但是Google可以帮助您找到可以将C#转换为VB的网站。

您需要使用RAS来获取信息

ReportClientDocument对象使用它来确定类型:

 CrystalDecisions.ReportAppServer.ReportDefModel.ReportObjects rptObjs;
 rptObjs = rptClientDoc.ReportDefController.ReportObjectController.GetAllReportObjects();

 foreach(rptObjs中的CrystalDecisions.ReportAppServer.ReportDefModel.ReportObject rptObj1)
 {
     开关(rptObj1.Kind)
     {
         案例CrReportObjectKindEnum.crReportObjectKindField:
             CrystalDecisions.ReportAppServer.ReportDefModel.FieldObject fldObj1;
             fldObj1 =(CrystalDecisions.ReportAppServer.ReportDefModel.FieldObject)rptObj1;

             btnReportObjects.Text + ="名称:" + fldObj1.Name.ToString();
             btnReportObjects.Text + =" \ n类型:" + rptObj1.Kind.ToString()+"->" + fldObj1.DataSourceName.ToString()+" \ n";
                            
             if(fldObj1.FieldFormat.StringFormat.TextFormat == CrystalDecisions.ReportAppServer.ReportDefModel.CrTextFormatEnum.crTextFormatRTFText)
                 btnReportObjects.Text + =" \ n RTF:= true";
             如果(fldObj1.FieldFormat.StringFormat.TextFormat == CrystalDecisions.ReportAppServer.ReportDefModel.CrTextFormatEnum.crTextFormatHTMLText)
                 btnReportObjects.Text + =" \ n HTML:= true";
             如果(fldObj1.FieldFormat.StringFormat.TextFormat == CrystalDecisions.ReportAppServer.ReportDefModel.CrTextFormatEnum.crTextFormatStandardText)
                 btnReportObjects.Text + =" \ n标准文本:= true";

 ... 

一周热门 更多>