/// <summary> /// Sets the value of the <c><Value></c> element. /// </summary> /// <param name="val">A SENTypeCode object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this of the content as: "Gets or sets the content value of the &lt;SENType&gt; element"</para> /// <para>Version: 2.6</para> /// <para>Since: 2.0</para> /// </remarks> public void SetValue(SENTypeCode val) { SetField(LearnerDTD.SENTYPE, val); }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="ranking">A value (starting at 1) indicating the order of significance of special educational need in relation to other SEN types listed here. CBDS: 100080</param> ///<param name="value">Gets or sets the content value of the &lt;SENType&gt; element</param> /// public SENType(int?ranking, SENTypeCode value) : base(LearnerDTD.SENTYPE) { this.Ranking = ranking; this.SetValue(value); }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="ranking">A value (starting at 1) indicating the order of significance of special educational need in relation to other SEN types listed here. CBDS: 100080</param> ///<param name="value">Gets or sets the content value of the &lt;SENType&gt; element</param> /// public SENType( int? ranking, SENTypeCode value ) : base(LearnerDTD.SENTYPE) { this.Ranking = ranking; this.SetValue( value ); }
///<summary>Adds the value of the <c><SENType></c> element.</summary> /// <param name="Ranking">A value (starting at 1) indicating the order of significance of special educational need in relation to other SEN types listed here. CBDS: 100080</param> /// <param name="Value">Gets or sets the content value of the &lt;SENType&gt; element</param> ///<remarks> /// <para>This form of <c>setSENType</c> is provided as a convenience method /// that is functionally equivalent to the method <c>AddSENType</c></para> /// <para>Version: 2.6</para> /// <para>Since: 2.0</para> /// </remarks> public void AddSENType(int?Ranking, SENTypeCode Value) { AddChild(LearnerDTD.SENTYPELIST_SENTYPE, new SENType(Ranking, Value)); }
/// <summary> /// Sets the value of the <c><Value></c> element. /// </summary> /// <param name="val">A SENTypeCode object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this of the content as: "Gets or sets the content value of the &lt;SENType&gt; element"</para> /// <para>Version: 2.5</para> /// <para>Since: 2.0</para> /// </remarks> public void SetValue( SENTypeCode val ) { SetField( LearnerDTD.SENTYPE, val ); }