I have been creating rdlc reports from scratch using C# to write xml files. To make sure I do this properly I look at the XML behind other reports I created using the VS 2008 report designer feature. When I look at the XML for the reports created using VS, I see the field called ZIndex which as a integer value associated with it. What is the importance of this field? Below you will see that the ZIndex value is 238.
Example:
<Textbox Name="FULL_NAME">
<rd:DefaultName>FULL_NAME</rd:DefaultName>
<Style>
<FontSize>8pt</FontSize>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
<ZIndex>238</ZIndex>
<CanGrow>true</CanGrow>
<Value>=Fields!FULL_NAME.Value</Value>
</Textbox>