I have an XML document that consists of several of the following elements:
- <LabelFieldBO>
<Height>23</Height>
<Width>100</Width>
<Top>32</Top>
<Left>128</Left>
<FieldName>field4</FieldName>
<Text>aoi_name</Text>
<DataColumn>aoi_name</DataColumn>
<FontFamily>Arial</FontFamily>
<FontStyle>Regular</FontStyle>
<FontSize>8.25</FontSize>
<Rotation>0</Rotation>
<LabelName />
<LabelHeight>0</LabelHeight>
<LabelWidth>0</LabelWidth>
<BarCoded>false</BarCoded>
</LabelFieldBO>
I figured out how to find the element where LabelName = 'container'. But I'm not very good at lambda expressions and would like to know how to access the information in my LINQ results. Lambda expressions may also not be able to go. I am open to any suggestions.
var dimensions = from field in xml.Elements("LabelFieldBO")
where field.Element("LabelName").Value == "container"
select field;
Thank.
EDIT: I'm trying to figure out how to get LabelHeight and LabelWidth from XML, where LabelName = "container"
source
share