Ejemplo n.º 1
0
 public void InsertOpacityAt(SchemaLong newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "Opacity", index, newValue.ToString());
 }
Ejemplo n.º 2
0
 public XmlNode AddOpacity(SchemaLong newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "Opacity", newValue.ToString());
     return null;
 }
Ejemplo n.º 3
0
 public XmlNode AddMaxWidth(SchemaLong newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "http://www.opengis.net/wms", "MaxWidth", newValue.ToString());
     return null;
 }
Ejemplo n.º 4
0
 public void InsertMaxWidthAt(SchemaLong newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "MaxWidth", index, newValue.ToString());
 }
Ejemplo n.º 5
0
 public void InsertwidthAt(SchemaLong newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Attribute, "", "width", index, newValue.ToString());
 }
Ejemplo n.º 6
0
 public XmlNode Addwidth(SchemaLong newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Attribute, "", "width", newValue.ToString());
     return null;
 }