Exemplo n.º 1
0
 public static XmlElement CreateStyleUrlElement(this XmlDocument doc, string styleUrl)
 {
     return doc.CreateGeneralElement("styleUrl", styleUrl);
 }
Exemplo n.º 2
0
 public static XmlElement CreateWidthElement(this XmlDocument doc, string widthValue)
 {
     return doc.CreateGeneralElement("width", widthValue);
 }
Exemplo n.º 3
0
 public static XmlElement CreateNameElement(this XmlDocument doc, string name)
 {
     return doc.CreateGeneralElement("name", name);
 }
Exemplo n.º 4
0
 public static XmlElement CreateExtrudeElement(this XmlDocument doc, string extrudeInfo)
 {
     return doc.CreateGeneralElement("extrude", extrudeInfo);
 }
Exemplo n.º 5
0
 public static XmlElement CreateCoordinatesElement(this XmlDocument doc, string coordinatesInfo)
 {
     return doc.CreateGeneralElement("coordinates", coordinatesInfo);
 }
Exemplo n.º 6
0
 public static XmlElement CreateColorElement(this XmlDocument doc, string colorValue)
 {
     return doc.CreateGeneralElement("color", colorValue);
 }
Exemplo n.º 7
0
 public static XmlElement CreateAltituteModeElement(this XmlDocument doc, string modeInfo)
 {
     return doc.CreateGeneralElement("altitudeMode", modeInfo);
 }