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

Shadow Constructor (Color, Single, Single)

Creates and initializes new Shadow class instance. You can set main shadow parameters (color and offset) here.

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

Syntax

Visual Basic
Public Sub New ( _
	shadowColor As Color, _
	horizontalOffset As Single, _
	verticalOffset As Single _
)
C#
public Shadow(
	Color shadowColor,
	float horizontalOffset,
	float verticalOffset
)

Parameters

shadowColor

Type: Aurigma.GraphicsMill.Color

Color value that specifies shadow color. You can change it later using ShadowColor property.
horizontalOffset

Type: System.Single

Value that specifies horizontal offset of the shadow. You can change it later using HorizontalOffset property.
verticalOffset

Type: System.Single

Value that specifies vertical offset of the shadow. You can change it later using VerticalOffset property.

See Also

Reference