Hi,
I have the following data in my XMLNode
<TablixCell><CellContents><Textbox Name="Textbox31"><CanGrow>true</CanGrow><KeepTogether>true</KeepTogether><Paragraphs><Paragraph><TextRuns><TextRun><Value>Submitter Group</Value><Style><FontSize>8pt</FontSize><FontWeight>Bold</FontWeight></Style></TextRun></TextRuns><Style /></Paragraph></Paragraphs><rd:DefaultName>Textbox30</rd:DefaultName><Style><Border><Style>Solid</Style></Border><BackgroundColor>Gold</BackgroundColor><PaddingLeft>2pt</PaddingLeft><PaddingRight>2pt</PaddingRight><PaddingTop>2pt</PaddingTop><PaddingBottom>2pt</PaddingBottom></Style></Textbox></CellContents></TablixCell>
My requirement is to read data in the Value node. In this example it is going to be<Value>Submitter Group</Value>.
Please help me in fetching the data inside Value node using C#. The output I am expecting isSubmitter Group.
Mohan