Example #1
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="type">The way the picture is specified.</param>
 ///<param name="value">Gets or sets the content value of the &amp;lt;PictureSource&amp;gt; element</param>
 ///
 public PictureSource( PictureType type, string value )
     : base(CommonDTD.PICTURESOURCE)
 {
     this.SetType( type );
     this.Value = value;
 }
 ///<summary>Sets the value of the <c>&lt;PictureSource&gt;</c> element.</summary>
 /// <param name="Type">The way the picture is specified.</param>
 /// <param name="Value">Gets or sets the content value of the &amp;lt;PictureSource&amp;gt; element</param>
 ///<remarks>
 /// <para>This form of <c>setPictureSource</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>PictureSource</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetPictureSource( PictureType Type, string Value )
 {
     RemoveChild( HrfinDTD.EMPLOYEEPICTURE_PICTURESOURCE);
     AddChild( HrfinDTD.EMPLOYEEPICTURE_PICTURESOURCE, new PictureSource( Type, Value ) );
 }
Example #3
0
 /// <summary>
 /// Sets the value of the <c>Type</c> attribute.
 /// </summary>
 /// <param name="val">A PictureType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "The way the picture is specified."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetType( PictureType val )
 {
     SetField( CommonDTD.PICTURESOURCE_TYPE, val );
 }
 ///<summary>Sets the value of the <c>&lt;PictureSource&gt;</c> element.</summary>
 /// <param name="Type">The way the picture is specified.</param>
 /// <param name="Value">Gets or sets the content value of the &amp;lt;PictureSource&amp;gt; element</param>
 ///<remarks>
 /// <para>This form of <c>setPictureSource</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>PictureSource</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetPictureSource( PictureType Type, string Value )
 {
     RemoveChild( StudentDTD.STUDENTPICTURE_PICTURESOURCE);
     AddChild( StudentDTD.STUDENTPICTURE_PICTURESOURCE, new PictureSource( Type, Value ) );
 }