예제 #1
0
 public XmlNode Addwidth(SchemaLong newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Attribute, "", "width", newValue.ToString());
     return null;
 }
예제 #2
0
		public void AddPriority(SchemaLong newValue)
		{
			AppendDomChild(NodeType.Element, "", "Priority", newValue.ToString());
		}
예제 #3
0
 public SchemaLong(SchemaLong obj)
 {
     myValue = obj.myValue;
     isEmpty = obj.isEmpty;
     isNull = obj.isNull;
 }
예제 #4
0
 public void InsertOpacityAt(SchemaLong newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "Opacity", index, newValue.ToString());
 }
예제 #5
0
		public void InsertcascadedAt(SchemaLong newValue, int index)
		{
			InsertDomChildAt(NodeType.Attribute, "", "cascaded", index, newValue.ToString());
		}
예제 #6
0
		public void AddfixedWidth(SchemaLong newValue)
		{
			AppendDomChild(NodeType.Attribute, "", "fixedWidth", newValue.ToString());
		}
예제 #7
0
		public void ReplaceIntegerAt(SchemaLong newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Element, "", "Integer", index, newValue.ToString());
		}
예제 #8
0
		public void InsertfixedHeightAt(SchemaLong newValue, int index)
		{
			InsertDomChildAt(NodeType.Attribute, "", "fixedHeight", index, newValue.ToString());
		}
예제 #9
0
		public void AddInteger(SchemaLong newValue)
		{
			AppendDomChild(NodeType.Element, "", "Integer", newValue.ToString());
		}
예제 #10
0
		public void InsertIntegerAt(SchemaLong newValue, int index)
		{
			InsertDomChildAt(NodeType.Element, "", "Integer", index, newValue.ToString());
		}
예제 #11
0
		public void InsertHoursAt(SchemaLong newValue, int index)
		{
			InsertDomChildAt(NodeType.Element, "", "Hours", index, newValue.ToString());
		}
예제 #12
0
		public void AddHours(SchemaLong newValue)
		{
			AppendDomChild(NodeType.Element, "", "Hours", newValue.ToString());
		}
예제 #13
0
 public void InsertwidthAt(SchemaLong newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Attribute, "", "width", index, newValue.ToString());
 }
예제 #14
0
		public void InsertPriorityAt(SchemaLong newValue, int index)
		{
			InsertDomChildAt(NodeType.Element, "", "Priority", index, newValue.ToString());
		}
예제 #15
0
 public void InsertMaxWidthAt(SchemaLong newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "MaxWidth", index, newValue.ToString());
 }
예제 #16
0
 public OpacityType(SchemaLong newValue)
     : base(newValue)
 {
     Validate();
 }
예제 #17
0
 public void ReplaceMaxWidthAt(SchemaLong newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "http://www.opengis.net/wms", "MaxWidth", index, newValue.ToString());
 }
예제 #18
0
		public void Addcascaded(SchemaLong newValue)
		{
			AppendDomChild(NodeType.Attribute, "", "cascaded", newValue.ToString());
		}
예제 #19
0
 public XmlNode AddMaxWidth(SchemaLong newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "http://www.opengis.net/wms", "MaxWidth", newValue.ToString());
     return null;
 }
예제 #20
0
		public void ReplacecascadedAt(SchemaLong newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Attribute, "", "cascaded", index, newValue.ToString());
		}
예제 #21
0
		public void Addheight(SchemaLong newValue)
		{
			AppendDomChild(NodeType.Attribute, "", "height", newValue.ToString());
		}
예제 #22
0
		public void ReplacefixedWidthAt(SchemaLong newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Attribute, "", "fixedWidth", index, newValue.ToString());
		}
예제 #23
0
		public void ReplaceheightAt(SchemaLong newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Attribute, "", "height", index, newValue.ToString());
		}
예제 #24
0
 public XmlNode AddOpacity(SchemaLong newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "Opacity", newValue.ToString());
     return null;
 }
예제 #25
0
 public void ReplaceStartYAt(SchemaLong newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "StartY", index, newValue.ToString());
 }
예제 #26
0
 public void ReplaceOpacityAt(SchemaLong newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "Opacity", index, newValue.ToString());
 }
예제 #27
0
		public SchemaLong(SchemaLong obj)
		{
			Value = obj.Value;
		}