Exemplo n.º 1
0
 public XmlNode AddMaxDisplayAltitude(MaxDisplayAltitudeType newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "MaxDisplayAltitude", newValue.ToString());
     return null;
 }
Exemplo n.º 2
0
 public void InsertMaxDisplayAltitudeAt(MaxDisplayAltitudeType newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "MaxDisplayAltitude", index, newValue.ToString());
 }