ImageMagick.DoubleMatrix.this C# (CSharp) Method

this() public method

Get or set the value at the specified x/y position.
public this ( int x, int y ) : double
x int The x position
y int The y position
return double
    public double this[int x, int y]
    {
      get
      {
        return GetValue(x, y);
      }
      set
      {
        SetValue(x, y, value);
      }
    }