AVCamBarcode.CGRectExtensions.WithWidth C# (CSharp) Метод

WithWidth() публичный статический Метод

public static WithWidth ( this rect, nfloat width ) : CGRect
rect this
width nfloat
Результат CGRect
		public static CGRect WithWidth (this CGRect rect, nfloat width)
		{
			rect.Width = width;
			return rect;
		}