Example #1
0
		public void ReplaceMeshFilePathAt(MeshFilePathType newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Element, "", "MeshFilePath", index, newValue.ToString());
		}
Example #2
0
		public void AddMeshFilePath(MeshFilePathType newValue)
		{
			AppendDomChild(NodeType.Element, "", "MeshFilePath", newValue.ToString());
		}
Example #3
0
		public void InsertMeshFilePathAt(MeshFilePathType newValue, int index)
		{
			InsertDomChildAt(NodeType.Element, "", "MeshFilePath", index, newValue.ToString());
		}
Example #4
0
 public XmlNode AddMeshFilePath(MeshFilePathType newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "MeshFilePath", newValue.ToString());
     return null;
 }