com.crystaldecisions.report.htmlrender
Class BeforeRenderContentEvent

java.lang.Object
  extended byRenderEventObjectBase
      extended bycom.crystaldecisions.report.htmlrender.BeforeRenderContentEvent

public class BeforeRenderContentEvent
extends RenderEventObjectBase

This class provides arguments for the BeforeRenderContentEventListener. The event occurs when the report content rendering process starts.

See Also:
Serialized Form

Constructor Summary
BeforeRenderContentEvent(java.lang.Object source)
           
 
Method Summary
 java.lang.String getAddBeforeContent()
          Returns the text that will be written immediately following the <BODY> tag.
 boolean getNeedRenderBodyTag()
          Returns whether the <BODY> tag is to be rendered.
 void setAddBeforeContent(java.lang.String value)
          Sets the text that will be written immediately following the <BODY> tag.
 void setNeedRenderBodyTag(boolean value)
          Sets whether the <BODY> tag will be rendered.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BeforeRenderContentEvent

public BeforeRenderContentEvent(java.lang.Object source)
Method Detail

getAddBeforeContent

public java.lang.String getAddBeforeContent()

Returns the text that will be written immediately following the <BODY> tag.

Returns:
The text that will be written immediately following the <BODY> tag as a String.
See Also:
setAddBeforeContent

getNeedRenderBodyTag

public boolean getNeedRenderBodyTag()

Returns whether the <BODY> tag is to be rendered.

Returns:
true if the <BODY> tag is to be rendered and false otherwise.
See Also:
setNeedRenderBodyTag

setAddBeforeContent

public void setAddBeforeContent(java.lang.String value)

Sets the text that will be written immediately following the <BODY> tag.

Parameters:
value - A String that specifies the text that will be written immediately following the <BODY> tag.
See Also:
getAddBeforeContent

setNeedRenderBodyTag

public void setNeedRenderBodyTag(boolean value)

Sets whether the <BODY> tag will be rendered.

Parameters:
value - true to render the <BODY> tag.
See Also:
getNeedRenderBodyTag