コード例 #1
0
		public void ReplaceMeshFilePathAt(MeshFilePathType newValue, int index)
		{
			ReplaceDomChildAt(NodeType.Element, "", "MeshFilePath", index, newValue.ToString());
		}
コード例 #2
0
		public void AddMeshFilePath(MeshFilePathType newValue)
		{
			AppendDomChild(NodeType.Element, "", "MeshFilePath", newValue.ToString());
		}
コード例 #3
0
		public void InsertMeshFilePathAt(MeshFilePathType newValue, int index)
		{
			InsertDomChildAt(NodeType.Element, "", "MeshFilePath", index, newValue.ToString());
		}
コード例 #4
0
ファイル: Type_MeshLayer.cs プロジェクト: paladin74/Dapple
 public XmlNode AddMeshFilePath(MeshFilePathType newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Element, "", "MeshFilePath", newValue.ToString());
     return null;
 }