MonobjcMonobjc Documented Class Library
Scale Method (t, sx, sy)
NamespacesMonobjc.ApplicationServicesCGAffineTransformScale(CGAffineTransform, Single, Single)

Returns an affine transformation matrix constructed by scaling an existing affine transform.

Original signature is : CGAffineTransform CGAffineTransformScale ( CGAffineTransform t, CGFloat sx, CGFloat sy );

Available in Mac OS X version 10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static CGAffineTransform Scale(
	CGAffineTransform t,
	float sx,
	float sy
)
Public Shared Function Scale ( _
	t As CGAffineTransform, _
	sx As Single, _
	sy As Single _
) As CGAffineTransform
public:
static CGAffineTransform Scale(
	CGAffineTransform t, 
	float sx, 
	float sy
)
Parameters
t (CGAffineTransform)
An existing affine transform.
sx (Single)
The value by which to scale x values of the affine transform.
sy (Single)
The value by which to scale y values of the affine transform.
Return Value
A new affine transformation matrix.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)