Using Linq to get default in a Office 2007 word document : Descendants « XML LINQ « VB.Net






Using Linq to get default in a Office 2007 word document

  

Imports System
Imports System.Reflection
Imports System.Xml

Module Module1

    Sub Main()
        Dim xml As XElement = XElement.Load("XLINQ.xml")
        Dim w As XNamespace = "http://schemas.microsoft.com/office/word/2003/wordml"

        Dim defaultFonts As XElement = xml.Descendants(w + "defaultFonts").First()
        Console.WriteLine("Default Fonts: {0}", _
            defaultFonts.Attribute(w + "ascii").Value)

    End Sub
End Module

   
    
  








Related examples in the same category

1.Query all Ford cars
2.Getting Descendants
3.Select all Descendants
4.Select nodes from Descendants