AVCamBarcode.CGRectExtensions.WithHeight C# (CSharp) Method

WithHeight() public static method

public static WithHeight ( this rect, nfloat height ) : CGRect
rect this
height nfloat
return CGRect
		public static CGRect WithHeight (this CGRect rect, nfloat height)
		{
			rect.Height = height;
			return rect;
		}