public void ReplaceminNormalizedMeasureAt(measureType newValue, int index) { ReplaceDomChildAt(NodeType.Element, "http://www.imsglobal.org/xsd/imsss", "minNormalizedMeasure", index, newValue.ToString()); }
public void AddminNormalizedMeasure(measureType newValue) { AppendDomChild(NodeType.Element, "http://www.imsglobal.org/xsd/imsss", "minNormalizedMeasure", newValue.ToString()); }
public void InsertmeasureThresholdAt(measureType newValue, int index) { InsertDomChildAt(NodeType.Attribute, "", "measureThreshold", index, newValue.ToString()); }
public void ReplacemeasureThresholdAt(measureType newValue, int index) { ReplaceDomChildAt(NodeType.Attribute, "", "measureThreshold", index, newValue.ToString()); }
public void AddmeasureThreshold(measureType newValue) { AppendDomChild(NodeType.Attribute, "", "measureThreshold", newValue.ToString()); }