Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "(BIRT) Java Constants"

Line 1: Line 1:
 +
{{Backlink|Examples (BIRT)}}
 
= DEAPI =
 
= DEAPI =
 
=== [[DesignChoiceConstants (BIRT)]] ===
 
=== [[DesignChoiceConstants (BIRT)]] ===
Line 8: Line 9:
 
  IRenderOption option = new IRenderOption();
 
  IRenderOption option = new IRenderOption();
 
  option.setOutputFormat(IRenderOption.OUTPUT_FORMAT_HTML);
 
  option.setOutputFormat(IRenderOption.OUTPUT_FORMAT_HTML);
 +
 +
[[Category:BIRT]]
 +
[[Category:BIRT Example]]
 +
[[Category:BIRT Example Integration]]

Revision as of 14:18, 27 October 2008

< To: Examples (BIRT)

DEAPI

DesignChoiceConstants (BIRT)

One of the most powerful DEAPI constants. There are 82 choices covering everything from FONT style to left to right (BIDI) orientation.

REAPI

IRenderOption

IRenderOption option = new IRenderOption();
option.setOutputFormat(IRenderOption.OUTPUT_FORMAT_HTML);

Back to the top