XMLAttribute - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


XMLTools

  

XMLAttribute

  

general XML attribute constructor

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

XMLAttribute(attrName, attrValue)

XMLAttribute(attrName = attrValue)

Parameters

attrName

-

string; name of XML attribute to create

attrValue

-

string; value of XML attribute to create

Description

• 

The XMLAttribute(attrName, attrValue) command constructs XML attribute data structures, given the name and value of the attribute. Data structures returned by this procedure may be recognized by using the procedure IsAttribute.

Examples

withXMLTools:

PrintXMLAttributefoo,bar

foo = 'bar'

PrintXMLAttributefoo=bar

foo = 'bar'

See Also

XMLTools

XMLTools[IsAttribute]