| RenderContextCloneCore Method |
Makes the instance a clone (deep copy) of the specified
RenderContext.
Namespace: DigitalRune.GraphicsAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax protected virtual void CloneCore(
RenderContext source
)
Protected Overridable Sub CloneCore (
source As RenderContext
)
protected:
virtual void CloneCore(
RenderContext^ source
)
abstract CloneCore :
source : RenderContext -> unit
override CloneCore :
source : RenderContext -> unit
Parameters
- source
- Type: DigitalRune.GraphicsRenderContext
The object to clone.
Remarks Notes to Inheritors: Every
RenderContext 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