Selects the text or image that will be rendered by the field.

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

Syntax

C#
protected virtual void GetRenderContent(
	ref string value,
	ref Image img,
	bool designTime
)
Visual Basic
Protected Overridable Sub GetRenderContent ( _
	ByRef value As String, _
	ByRef img As Image, _
	designTime As Boolean _
)

Parameters

value
Type: System..::..String%
Field text.
img
Type: System.Drawing..::..Image%
Chart image.
designTime
Type: System..::..Boolean
This parameter allows the field to render differently at design time or run time. This is usually needed for bound controls, since no data is available at design time.

Remarks

Override this method in derived classes to provide custom text or images to be rendered in the report.

See Also