HelpInfo IHelpProvider.ProvideHoverHelp(Point localPos, ref bool captured) { HelpInfo result = null; if (this.rectHeader.Contains(localPos)) { result = HelpInfo.FromSelection(new ObjectSelection(this.GetValue())); } else if (this.rectPrefab.Contains(localPos)) { result = HelpInfo.FromMember(typeof(Duality.Resources.PrefabLink)); } return(result); }