Creates an internally maintained RenderGraphics object that can be used to add graphics to the block flow of the current document.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public bool RenderBlockGraphicsBegin()
Visual Basic
Public Function RenderBlockGraphicsBegin As Boolean

Return Value

This method always returns true.

Remarks

Between the calls to this method and RenderBlockGraphicsEnd()()()(), use CurrentBlockRenderGraphics property to access the RenderGraphics object that can be used to draw on.

This method throws an exception if a call to RenderBlockGraphicsBegin without a matching call to RenderBlockGraphicsEnd()()()() has already been issued.

This method can only be used between calls to StartDoc()()()() and EndDoc()()()() methods on the current document. For details, see RenderBlock(RenderObject).

See Also