I work in windows form vs 2015 Microsoft report rdlc
I added two rectangle on body section
1- left center
2- right center
when print report i see rectangle on right display on left side
IF I set visibility as below
when valueprint parameter =1
show right rectangle only and hide left rectangle by assign expression
=
IIF(Parameters!ValuePrint.Value=1,False, True)
when valueprint parameter =2
show left rectangle only and hide right rectangle by assign expression
=
IIF(Parameters!ValuePrint.Value=1,False, True)
Result of above
viability working
but show right rectangle on design on left side when print
and this actually my problem
How display every rectangle on fixed position as my design when assign visibility ?