Example #1
0
 public void InsertPriorityAt(SchemaLong newValue, int index)
 {
     InsertDomChildAt(NodeType.Element, "", "Priority", index, newValue.ToString());
 }
Example #2
0
 public void ReplaceHoursAt(SchemaLong newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "Hours", index, newValue.ToString());
 }
Example #3
0
 public void AddPriority(SchemaLong newValue)
 {
     AppendDomChild(NodeType.Element, "", "Priority", newValue.ToString());
 }
Example #4
0
 public void AddHours(SchemaLong newValue)
 {
     AppendDomChild(NodeType.Element, "", "Hours", newValue.ToString());
 }
Example #5
0
 public void InsertHoursAt(SchemaLong newValue, int index)
 {
     InsertDomChildAt(NodeType.Element, "", "Hours", index, newValue.ToString());
 }
Example #6
0
 public void InsertheightAt(SchemaLong newValue, int index)
 {
     InsertDomChildAt(NodeType.Attribute, "", "height", index, newValue.ToString());
 }
Example #7
0
 public void ReplaceheightAt(SchemaLong newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "height", index, newValue.ToString());
 }
Example #8
0
 public void Addwidth(SchemaLong newValue)
 {
     AppendDomChild(NodeType.Attribute, "", "width", newValue.ToString());
 }
Example #9
0
 public void Addheight(SchemaLong newValue)
 {
     AppendDomChild(NodeType.Attribute, "", "height", newValue.ToString());
 }
Example #10
0
 public void InsertIntegerAt(SchemaLong newValue, int index)
 {
     InsertDomChildAt(NodeType.Element, "", "Integer", index, newValue.ToString());
 }
Example #11
0
 public void AddInteger(SchemaLong newValue)
 {
     AppendDomChild(NodeType.Element, "", "Integer", newValue.ToString());
 }
Example #12
0
 public void ReplaceMaxHeightAt(SchemaLong newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "MaxHeight", index, newValue.ToString());
 }
Example #13
0
 public void AddMaxHeight(SchemaLong newValue)
 {
     AppendDomChild(NodeType.Element, "http://www.opengis.net/wms", "MaxHeight", newValue.ToString());
 }
Example #14
0
 public void InsertMaxWidthAt(SchemaLong newValue, int index)
 {
     InsertDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "MaxWidth", index, newValue.ToString());
 }