Esempio n. 1
0
 /// <summary>
 /// Sets the value of the <c>&lt;Value&gt;</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 &amp;lt;SENType&amp;gt; element"</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetValue(SENTypeCode val)
 {
     SetField(LearnerDTD.SENTYPE, val);
 }
Esempio n. 2
0
 /// <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 &amp;lt;SENType&amp;gt; element</param>
 ///
 public SENType(int?ranking, SENTypeCode value) : base(LearnerDTD.SENTYPE)
 {
     this.Ranking = ranking;
     this.SetValue(value);
 }
Esempio n. 3
0
 /// <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 &amp;lt;SENType&amp;gt; element</param>
 ///
 public SENType( int? ranking, SENTypeCode value )
     : base(LearnerDTD.SENTYPE)
 {
     this.Ranking = ranking;
     this.SetValue( value );
 }
Esempio n. 4
0
 ///<summary>Adds the value of the <c>&lt;SENType&gt;</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 &amp;lt;SENType&amp;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));
 }
Esempio n. 5
0
 /// <summary>
 /// Sets the value of the <c>&lt;Value&gt;</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 &amp;lt;SENType&amp;gt; element"</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetValue( SENTypeCode val )
 {
     SetField( LearnerDTD.SENTYPE, val );
 }