1
表達式如何改變BorderWidth(row)? 我發現這個如何改變表達式的rdlc borderwidth?
=iif(Fields!AccountType.Value = "1", "Bold", "Normal")
我想要的 - 但爲BorderWidth! 10X
表達式如何改變BorderWidth(row)? 我發現這個如何改變表達式的rdlc borderwidth?
=iif(Fields!AccountType.Value = "1", "Bold", "Normal")
我想要的 - 但爲BorderWidth! 10X
嘗試這樣:
=IIf(Fields!AccountType.Value = "1", "2pt", "1pt")
您可以設置BorderWidth.Default
每一個邊界,或指定其他Left
,Right
,Top
,Bottom
邊框寬度。
...更多詳細信息?你希望我們幫助你,對吧?! – cacau
= IIF(Fields!TheType.Value =「sumTotal」,「Bold」,「Default」) - 使用此代碼更改FontWeight ...但類似地,如何更改BorderWidth? – user3189652
你想根據什麼條件改變什麼? –