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