Multi Level Display of nodes in Dictionary

Stimulsoft Reports.NET discussion
Post Reply
anuviswan
Posts: 21
Joined: Mon May 02, 2011 6:29 am
Location: india

Multi Level Display of nodes in Dictionary

Post by anuviswan »

Hi

I am working on a Report using Following class as Bussiness Class

public class DoorObject
{
public System.Drawing.Color DoorColor;
public string DoorName;

[Browsable(true)]
public System.Drawing.Color ColorOfDoor
{
set { this.DoorColor = value; }

get { return this.DoorColor; }
}
}
public class DoorCollection: System.Collections.CollectionBase
{
public void add(DoorObject Door)
{
List.Add(Door);
}
public void remove(DoorObject Door)
{
List.Remove(Door);
}
public DoorObject this[int Index] //the Item property for Doors.Item[x])
{
get
{
return (DoorObject) List[Index];
}
set
{
List[Index] = value;
}
}

}



public class House
{
private DoorCollection drCol = new DoorCollection();




public BusinessObjects.DoorCollection DoorsinHouse
{
set
{
this.drCol = value as DoorCollection;
}
get
{
return this.drCol;
}
}

}

This is displayed as following in Dictionary

+House
->>House
->>->>DoorsinHouse
+House_DoorsinHouse
->>ColorOfDoor


Ideally i would like to have it following way

+House
->>House
->>->>DoorsinHouse
->>->>->>ColorOfDoor


That's I would like it to be shown as a multilevel nodes rather than 2 seperate nodes

I am using Stimulsoft Reports.Net 2008.1 for Visual Studio 2003

Can you please guide ?
Anu

Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Multi Level Display of nodes in Dictionary

Post by Alex K. »

Hello,

Please send us sample project which reproduces the issue.

Thank you.
anuviswan
Posts: 21
Joined: Mon May 02, 2011 6:29 am
Location: india

Multi Level Display of nodes in Dictionary

Post by anuviswan »

Sure I can.
To which am i supposed to send it ?

Regards
Anu
Andrew
Posts: 4109
Joined: Fri Jun 09, 2006 3:58 am

Multi Level Display of nodes in Dictionary

Post by Andrew »

Hello,

Please send it to support@stimulsoft.com

Thank you.
Post Reply