public override void disposeInternal() { base.disposeInternal(); this.handler_.dispose(); //goog.dispose(this.showTransition_); this.showTransition_ = null; //goog.dispose(this.hideTransition_); this.hideTransition_ = null; Script.Delete(ref this.element_); Script.Delete(ref this.handler_); Script.Delete(ref this.autoHidePartners_); }
/// <summary> /// Sets transition animation on showing and hiding the popup. /// </summary> /// <param name="opt_showTransition"> Transition to play on /// showing the popup.</param> /// <param name="opt_hideTransition"> Transition to play on /// hiding the popup.</param> public void setTransition(goog.fx.Transition opt_showTransition = null, goog.fx.Transition opt_hideTransition = null) { this.showTransition_ = opt_showTransition; this.hideTransition_ = opt_hideTransition; }