示例#1
0
 ///<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: 2.0</para>
 /// </remarks>
 public void SetPictureSource( PictureType Type, string Value )
 {
     RemoveChild( SchoolDTD.PERSONPICTURE_PICTURESOURCE);
     AddChild( SchoolDTD.PERSONPICTURE_PICTURESOURCE, new PictureSource( Type, Value ) );
 }
示例#2
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(SchoolDTD.PICTURESOURCE)
 {
     this.SetType( type );
     this.Value = value;
 }
示例#3
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(SchoolDTD.PICTURESOURCE)
 {
     this.SetType(type);
     this.Value = value;
 }
示例#4
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.5</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetType( PictureType val )
 {
     SetField( SchoolDTD.PICTURESOURCE_TYPE, val );
 }
示例#5
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: 2.0</para>
 /// </remarks>
 public void SetType(PictureType val)
 {
     SetField(SchoolDTD.PICTURESOURCE_TYPE, val);
 }