///<summary>Sets the value of the <c><LearningStandardRefId></c> element.</summary> /// <param name="ObjectType">LearningStandardRefId</param> /// <param name="Value">Gets or sets the content value of the &lt;LearningStandardRefId&gt; element</param> ///<remarks> /// <para>This form of <c>setLearningStandardRefId</c> is provided as a convenience method /// that is functionally equivalent to the <c>LearningStandardRefId</c></para> /// <para>Version: 2.6</para> /// <para>Since: 2.6</para> /// </remarks> public void SetLearningStandardRefId( ObjectType ObjectType, string Value ) { RemoveChild( InstrDTD.LEARNINGSTANDARDASSOCIATION_LEARNINGSTANDARDREFID); AddChild( InstrDTD.LEARNINGSTANDARDASSOCIATION_LEARNINGSTANDARDREFID, new LearningStandardRefId( ObjectType, Value ) ); }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="objectType">LearningStandardRefId</param> ///<param name="value">Gets or sets the content value of the &lt;LearningStandardRefId&gt; element</param> /// public LearningStandardRefId( ObjectType objectType, string value ) : base(InstrDTD.LEARNINGSTANDARDREFID) { this.SetObjectType( objectType ); this.Value = value; }
///<summary>Sets the value of the <c><LearningStandardRefId></c> element.</summary> /// <param name="ObjectType">LearningStandardRefId</param> /// <param name="Value">Gets or sets the content value of the &lt;LearningStandardRefId&gt; element</param> ///<remarks> /// <para>This form of <c>setLearningStandardRefId</c> is provided as a convenience method /// that is functionally equivalent to the <c>LearningStandardRefId</c></para> /// <para>Version: 2.6</para> /// <para>Since: 2.6</para> /// </remarks> public void SetLearningStandardRefId(ObjectType ObjectType, string Value) { RemoveChild(InstrDTD.LEARNINGSTANDARDASSOCIATION_LEARNINGSTANDARDREFID); AddChild(InstrDTD.LEARNINGSTANDARDASSOCIATION_LEARNINGSTANDARDREFID, new LearningStandardRefId(ObjectType, Value)); }
/// <summary> /// Sets the value of the <c>ObjectType</c> attribute. /// </summary> /// <param name="val">A ObjectType object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this attribute as: "LearningStandardRefId"</para> /// <para>Version: 2.6</para> /// <para>Since: 2.6</para> /// </remarks> public void SetObjectType( ObjectType val ) { SetField( InstrDTD.LEARNINGSTANDARDREFID_OBJECTTYPE, val ); }