ImageMagick.ExifProfile.RemoveValue C# (CSharp) Метод

RemoveValue() публичный Метод

Removes the value with the specified tag.
public RemoveValue ( ExifTag tag ) : bool
tag ExifTag The tag of the exif value.
Результат bool
    public bool RemoveValue(ExifTag tag)
    {
      InitializeValues();

      for (int i = 0; i < _Values.Count; i++)
      {
        if (_Values[i].Tag == tag)
        {
          _Values.RemoveAt(i);
          return true;
        }
      }

      return false;
    }