AVCamBarcode.CGPointExtensions.WithOffsetY C# (CSharp) Méthode

WithOffsetY() public static méthode

public static WithOffsetY ( this rect, nfloat dy ) : CGPoint
rect this
dy nfloat
Résultat CGPoint
		public static CGPoint WithOffsetY(this CGPoint rect, nfloat dy)
		{
			rect.Y += dy;
			return rect;
		}
	}