public void AddTextNode(SchemaString newValue)
 {
     AppendDomChild(NodeType.Text, "", "", newValue.ToString());
 }
Example #2
0
 public void ReplaceNameAt(SchemaString newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "Name", index, newValue.ToString());
 }
Example #3
0
 public XmlNode AddClickableUrl(SchemaString newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "ClickableUrl", newValue.ToString());
     return null;
 }
Example #4
0
 public void InsertNameAt(SchemaString newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "Name", index, newValue.ToString());
 }
Example #5
0
 public void ReplaceClickableUrlAt(SchemaString newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "ClickableUrl", index, newValue.ToString());
 }
Example #6
0
 public XmlNode Addpath(SchemaString newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Attribute, "", "path", newValue.ToString());
     return null;
 }
Example #7
0
 public void ReplacepathAt(SchemaString newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "path", index, newValue.ToString());
 }
Example #8
0
		public void AddLayerDirectory(SchemaString newValue)
		{
			AppendDomChild(NodeType.Attribute, "", "LayerDirectory", newValue.ToString());
		}
Example #9
0
		public void ReplaceLayerDirectoryAt(SchemaString newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Attribute, "", "LayerDirectory", index, newValue.ToString());
		}
Example #10
0
		public void AddName(SchemaString newValue)
		{
			AppendDomChild(NodeType.Attribute, "", "Name", newValue.ToString());
		}
Example #11
0
		public void InsertNameAt(SchemaString newValue, int index)
		{
			InsertDomChildAt(NodeType.Attribute, "", "Name", index, newValue.ToString());
		}
Example #12
0
		public void ReplaceunitSymbolAt(SchemaString newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Attribute, "", "unitSymbol", index, newValue.ToString());
		}
Example #13
0
		public void InsertunitSymbolAt(SchemaString newValue, int index)
		{
			InsertDomChildAt(NodeType.Attribute, "", "unitSymbol", index, newValue.ToString());
		}
Example #14
0
		public void AddunitSymbol(SchemaString newValue)
		{
			AppendDomChild(NodeType.Attribute, "", "unitSymbol", newValue.ToString());
		}
Example #15
0
 public void ReplacefixedHeightAt(SchemaString newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "fixedHeight", index, newValue.ToString());
 }
		public void AddOr(SchemaString newValue)
		{
			AppendDomChild(NodeType.Element, "", "Or", newValue.ToString());
		}
Example #17
0
 public XmlNode AddFamily(SchemaString newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "Family", newValue.ToString());
     return null;
 }
Example #18
0
		public void AddKeyword(SchemaString newValue)
		{
			AppendDomChild(NodeType.Element, "", "Keyword", newValue.ToString());
		}
Example #19
0
 public void InsertpathAt(SchemaString newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Attribute, "", "path", index, newValue.ToString());
 }
Example #20
0
		public void InsertKeywordAt(SchemaString newValue, int index)
		{
			InsertDomChildAt(NodeType.Element, "", "Keyword", index, newValue.ToString());
		}
Example #21
0
 public XmlNode AddTextureFilePath(SchemaString newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "TextureFilePath", newValue.ToString());
     return null;
 }
Example #22
0
		public NameType2(SchemaString newValue) : base(newValue)
		{
			Validate();
		}
Example #23
0
 public void InsertTextureFilePathAt(SchemaString newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Element, "", "TextureFilePath", index, newValue.ToString());
 }
Example #24
0
 public XmlNode Addcapabilitiesurl(SchemaString newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Attribute, "", "capabilitiesurl", newValue.ToString());
     return null;
 }
Example #25
0
 public void ReplaceDescriptionAt(SchemaString newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "Description", index, newValue.ToString());
 }
Example #26
0
 public void InsertcapabilitiesurlAt(SchemaString newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Attribute, "", "capabilitiesurl", index, newValue.ToString());
 }
Example #27
0
 public void ReplaceTextureFilePathAt(SchemaString newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Element, "", "TextureFilePath", index, newValue.ToString());
 }
Example #28
0
 public void ReplacecapabilitiesurlAt(SchemaString newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "capabilitiesurl", index, newValue.ToString());
 }
Example #29
0
 public XmlNode AddDescription(SchemaString newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "Description", newValue.ToString());
     return null;
 }
 public void AddProcessingInstruction(SchemaString name, SchemaString newValue)
 {
     AppendDomChild(NodeType.ProcessingInstruction , "", name.ToString(), newValue.ToString());
 }