Navigation sidebar values?
Hi,
Version 7 has the navigation sidebar showing key values from the report, can
I specify which values are displayed?
Regards
Simon
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.471 / Virus Database: 269 - Release Date: 10/04/2003
Version 7 has the navigation sidebar showing key values from the report, can
I specify which values are displayed?
Regards
Simon
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.471 / Virus Database: 269 - Release Date: 10/04/2003
This discussion has been closed.
Comments
Report Outline). Use the Report.OnOutlineNodeCreate event:
Declaration
property OnOutlineNodeCreate: TppOutlineNodeCreateEvent;
Description
This event fires whenever an outline node is created during the report
generation process. When enabled, an outline tree structure is dynamically
generated by the report engine and rendered by the report previewer.
The OutlineSettings property is used to control the behavior of report
outline generation. The OnOutlineNodeCreate event can be used to further
customize the outline as it is being generated.
The aNode parameter is the node being created. Set the aNode.Caption
property to modify the default caption assigned to the node.
The aAccept parameter defaults to True. Set aAccept to False to prevent the
node from being included in the report.
You can also check the aNode.NodeType propery to see what component type the
node represents.
Add ppOutlineNode to your uses clause when using this event handler.
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com