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