Andrew/Lech,
I have a few more questions about the hierarchy report I've been working with and have attached it and some sample data.
1. I know you mentioned earlier that the +/- icons showing whether something is collapsed cannot be indented with each
level, but the documentation for dynamic collapsing seems to show that it can be done. Is that capability only available in certain
development environments?

- Tree.JPG (35.21 KiB) Viewed 3279 times
2. I have used the following in the BeginRender event of the Hierarchical Band to determine the indent level for each node in the
hierarchy...
varLevel = (sender as StiHierarchicalBand).DataSource.GetLevel();
Is there a similar expression that would tell me whether a given level was collapsed or not? I have tried the following without any
success.
varTest = (sender as StiHierarchicalBand).DataSource.GetCollapsedValue();
varTest = (sender as StiHierarchicalBand).DataSource.CollapsedValue();
varTest = (sender as StiHierarchicalBand).GetCollapsedValue();
varTest = (sender as StiHierarchicalBand).CollapsedValue();
varTest = HierarchicalBand1.GetCollapsedValue();
varTest = HierarchicalBand1.CollapsedValue();
3. I have the Hierarchical Band set to Collapse All when the report first loads. If I expand the Kinlock Water Plant node, I can see three
nodes at level 1 - Electrical Components, Mechanical Components, and Building Envelope - this is what I expect and want to see.
However if I then expand Building Envelope, none of its subcomponents display. The only way I can get the Building Envelope sub-components
to show up is if I expand Electrical Components first, Mechanical Components second and Building Envelope third. If there a setting or some
snippet of code I can use in one of the events to help deal with this, so I can see what is under the Building Envelope node without expanding
the Electrical and Mechanical nodes?
Thank You,
Carl