如何在SSRS报告页面的文本框中显示缩放值?
我的代码是这样的:
<ReportSection>
<Body>
<ReportItems>
<Map Name="Map2">
<MapViewport>
<MapCustomView>
<CenterX>34.6386680603027</CenterX>
<CenterY>42.2658576965332</CenterY>
<Zoom>229.739669799805</Zoom>
</MapCustomView>
</MapViewport>
</Map>
</ReportItems>
</Body>
</ReportSection>
答案 0 :(得分:1)
替换:
<Zoom>229.739669799805</Zoom>
使用:
<Zoom>=Parameters!Zoom.Value</Zoom>