public void AddDistanceAboveSurface(SchemaDecimal newValue)
 {
     AppendDomChild(NodeType.Element, "", "DistanceAboveSurface", newValue.ToString());
 }
示例#2
0
 public void AddCertainty(SchemaDecimal newValue)
 {
     AppendDomChild(NodeType.Element, "", "Certainty", newValue.ToString());
 }
 public void ReplaceresxAt(SchemaDecimal newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "resx", index, newValue.ToString());
 }
 public void InsertresxAt(SchemaDecimal newValue, int index)
 {
     InsertDomChildAt(NodeType.Attribute, "", "resx", index, newValue.ToString());
 }
 public void Addresx(SchemaDecimal newValue)
 {
     AppendDomChild(NodeType.Attribute, "", "resx", newValue.ToString());
 }
示例#6
0
 public void AddFloat2(SchemaDecimal newValue)
 {
     AppendDomChild(NodeType.Element, "", "Float", newValue.ToString());
 }