20 {
21 Object targetObject = target.GetObject();
22 if ( targetObject.IsInherited(HescoBox) )
23 {
24 HescoBox hesco = HescoBox.Cast( targetObject );
25
26 if ( hesco.GetState() == HescoBox.UNFOLDED )
27 {
28 return true;
29 }
30 }
31 return false;
32 }