PostEffect.WriteToDocumentDefaults Method

PostEffectWriteToDocumentDefaults Method

Write the state to document defaults. This is implemented by RDK to call WriteState() so usually a post effect only has to implement WriteState(). However, a post effect can override this method to take complete control of how the document defaults are written.

Namespace:  Rhino.Render.PostEffects
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 7.0
Syntax
public virtual bool WriteToDocumentDefaults(
	RhinoDoc doc
)
Public Overridable Function WriteToDocumentDefaults ( 
	doc As RhinoDoc
) As Boolean

Parameters

doc
Type: RhinoRhinoDoc
Rhino document

Return Value

Type: Boolean
Return true if write was succesful
See Also