public void InsertstructureAt(structureType newValue, int index) { InsertDomChildAt(NodeType.Attribute, "", "structure", index, newValue.ToString()); }
public void ReplacestructureAt(structureType newValue, int index) { ReplaceDomChildAt(NodeType.Attribute, "", "structure", index, newValue.ToString()); }
public void Addstructure(structureType newValue) { AppendDomChild(NodeType.Attribute, "", "structure", newValue.ToString()); }