/// <summary>
 /// Sets the password which has been entered into the password box.
 /// </summary>
 /// <param name="value">A <see cref="StringSegment"/> containing password to set.</param>
 public void SetPassword(StringSegment value)
 {
     if (PART_Editor != null)
     {
         PART_Editor.SetPassword(value);
     }
 }
 /// <summary>
 /// Sets the password which has been entered into the password box.
 /// </summary>
 /// <param name="value">A <see cref="StringBuilder"/> containing password to set.</param>
 public void SetPassword(StringBuilder value)
 {
     if (PART_Editor != null)
     {
         PART_Editor.SetPassword(value);
     }
 }