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