Click or drag to resize
DigitalRuneShadowCloneCore Method
Makes the instance a clone (deep copy) of the specified Shadow.

Namespace: DigitalRune.Graphics
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax
protected virtual void CloneCore(
	Shadow source
)

Parameters

source
Type: DigitalRune.GraphicsShadow
The object to clone.
Remarks

Notes to Inheritors: Every Shadow derived class must implement this method. A typical implementation is to call base.CloneCore(this) to copy all properties of the base class and then copy all properties of the derived class.

See Also