Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在实现矩形的可见性时遇到了一些困难,我使用这行代码来设置可见性:
=IIF(Len(ReportItems!txtCountVolunteer.Value) > 0, true, false)
不幸的是,它不起作用。
祝你有美好的一天。
看起来你已经在表达式中得到了颠倒的逻辑。矩形有“隐藏”属性,请注意没有“可见”属性。所以矩形的“隐藏”属性的表达式应该是:
=IIF(Len(ReportItems!txtCountVolunteer.Value) <= 0, true, false)