/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="value">Gets or sets the content value of the &lt;FormAccommodation&gt; element</param> /// public FormAccommodation( FormAccommodationType value ) : base(AssessmentDTD.FORMACCOMMODATION) { this.SetValue( value ); }
/// <summary> /// Sets the value of the <c><Value></c> element. /// </summary> /// <param name="val">A FormAccommodationType 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;FormAccommodation&gt; element"</para> /// <para>Version: 2.6</para> /// <para>Since: 2.6</para> /// </remarks> public void SetValue( FormAccommodationType val ) { SetField( AssessmentDTD.FORMACCOMMODATION, val ); }
/// <summary> /// Sets the value of the <c><Value></c> element. /// </summary> /// <param name="val">A FormAccommodationType 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;FormAccommodation&gt; element"</para> /// <para>Version: 2.6</para> /// <para>Since: 2.6</para> /// </remarks> public void SetValue(FormAccommodationType val) { SetField(AssessmentDTD.FORMACCOMMODATION, val); }
///<summary>Adds the value of the <c><FormAccommodation></c> element.</summary> /// <param name="Value">Gets or sets the content value of the &lt;FormAccommodation&gt; element</param> ///<remarks> /// <para>This form of <c>setFormAccommodation</c> is provided as a convenience method /// that is functionally equivalent to the method <c>AddFormAccommodation</c></para> /// <para>Version: 2.6</para> /// <para>Since: 2.6</para> /// </remarks> public void AddFormAccommodation(FormAccommodationType Value) { AddChild(AssessmentDTD.FORMACCOMMODATIONS_FORMACCOMMODATION, new FormAccommodation(Value)); }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="value">Gets or sets the content value of the &lt;FormAccommodation&gt; element</param> /// public FormAccommodation(FormAccommodationType value) : base(AssessmentDTD.FORMACCOMMODATION) { this.SetValue(value); }