This documentation is for the old version. Go to the latest Graphics Mill docs

Blur Constructor (Single, BlurType)

Creates new Blur class instance. You can initialize all transform parameters here (both blur radius and blur type).

Namespace: Aurigma.GraphicsMill.Transforms
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Sub New ( _
	radius As Single, _
	type As BlurType _
)
C#
public Blur(
	float radius,
	BlurType type
)

Parameters

radius

Type: System.Single

A positive value which specifies blur radius. You can later access this value through property Radius.
type

Type: Aurigma.GraphicsMill.Transforms.BlurType

A member of BlurType enumeration specifying blur type. You can later access this value through property Type.

See Also

Reference