I have this Style XML:
<Style Name="TextBox2" Type="TEXT">
<Alignment>LEFT</Alignment>
<BorderColor>blue</BorderColor>
<BorderStyle>Solid</BorderStyle>
<BackGroundColor>red</BackGroundColor>
<Options>VISIBLE</Options>
<TextColor>Black</TextColor>
<TextSize>10</TextSize>
<MaxCharacterLength>50</MaxCharacterLength>
I want to write a function which enables me to search for a Name (e.g. Checkbox2) and returns us corresponding names and values of child nodes (Alignment=Center, Bordercolor=red etc.) Should I use datatable or Dataset? Or any suggestion will be much appreciated