Click or drag to resize
DigitalRuneBillboardClone Method
Creates a new Billboard that is a clone (deep copy) of the current instance.

Namespace: DigitalRune.Graphics
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax
public Billboard Clone()

Return Value

Type: Billboard
A new Billboard that is a clone (deep copy) of the current instance.
Remarks

See class documentation of Billboard (Section "Cloning") for more information about cloning.

Notes to Inheritors: The method Clone calls CreateInstanceCore which is responsible for creating a new instance of the Billboard derived class and CloneCore(Billboard) to create a copy of the current instance. Classes that derive from Billboard need to implement CreateInstanceCore and CloneCore(Billboard).

See Also