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