Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Xmladapter to acess xml svg
Message
De
13/07/2010 10:24:48
 
 
À
13/07/2010 09:59:47
Valter Molina
Molina & Nardi Ltda
Brésil
Information générale
Forum:
Visual FoxPro
Catégorie:
XML, XSD
Divers
Thread ID:
01472350
Message ID:
01472354
Vues:
68
>I need to read the TEXT TAG properties such as pdf_Op, font-size, font-family

Valter, this will display the name and values of all attributes of the text tag.
m.loXML = CREATEOBJECT("Microsoft.XMLDOM")

m.loXML.async = .F.
m.lcXMLFile = GETFILE()
m.loXML.Load(m.lcXMLFile)

m.loXMLDoc = m.loXML.documentElement

m.loTextElement = m.loXMLDoc.selectSingleNode("text")

FOR EACH m.loAttribute IN m.loTextElement.attributes
	? m.loAttribute.name, m.loAttribute.value
ENDFOR
----------------------------------
António Tavares Lopes
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform