public override GH_ObjectResponse RespondToMouseDoubleClick(GH_Canvas sender, GH_CanvasMouseEvent e)
        {
            if (ContentBox.Contains(e.CanvasLocation))
            {
                IfcOpenInRevit component = Owner as IfcOpenInRevit;
                System.Diagnostics.Debug.Write("double click called\n");

                // Force the re-culculation of the component
                component.ExpireSolution(true);
                return(GH_ObjectResponse.Handled);
            }
            return(GH_ObjectResponse.Ignore);
        }
 public IfcOpenInRevitDoubleClick(IfcOpenInRevit owner) : base(owner) { }
 public IfcOpenInRevitDoubleClick(IfcOpenInRevit owner) : base(owner)
 {
 }