Cloudinary.TransformationBase.SetFixedCroppingPosition C# (CSharp) Method

SetFixedCroppingPosition() public method

Sets the fixed cropping position, note that the x and y values are against the original image
public SetFixedCroppingPosition ( uint x, uint y ) : void
x uint the x value
y uint the y value
return void
        public void SetFixedCroppingPosition(uint x, uint y)
        {
            X = x;
            Y = y;
        }