public override bool Contains(GraphicObject goToFind) { return(child == goToFind ? true : child == null ? false : child.Contains(goToFind)); }