  | RenderContextSet Method  | 
            Copies the properties of the specified render context.
            
 
Namespace: DigitalRune.GraphicsAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntaxpublic void Set(
	RenderContext source
)
Public Sub Set ( 
	source As RenderContext
)
public:
void Set(
	RenderContext^ source
)
member Set : 
        source : RenderContext -> unit 
Parameters
- source
 - Type: DigitalRune.GraphicsRenderContext
The render context from properties are copied. 
Remarks
            All properties and the content of the Data dictionary are copied from 
            source to this instance by reference (shallow copy).
            
            The Set(RenderContext) method internally calls CloneCore(RenderContext), which can be 
            overridden in derived classes.
            
See Also