Beispiel #1
0
		/// <summary>
		///     Removes a component from this container.  Fires the {@link #beforeremove} event before removing, then fires
		///     the {@link #remove} event after the component has been removed.
		///     Defaults to the value of this Container's {@link #autoDestroy} config.
		/// </summary>
		/// <param name="component">The component reference or id to remove.</param>
		/// <returns>Ext.Component</returns>
		public extern virtual void remove(Component component);
Beispiel #2
0
		/// <summary>
		///     Removes a component from this container.  Fires the {@link #beforeremove} event before removing, then fires
		///     the {@link #remove} event after the component has been removed.
		///     Defaults to the value of this Container's {@link #autoDestroy} config.
		/// </summary>
		/// <param name="component">The component reference or id to remove.</param>
		/// <param name="autoDestroy">(optional) True to automatically invoke the removed Component's {@link Ext.Component#destroy} function.</param>
		/// <returns>Ext.Component</returns>
		public extern virtual void remove(Component component, bool autoDestroy);
Beispiel #3
0
 public Component remove(Component component, bool autoDestroy) { throw new Exception(); }
Beispiel #4
0
 public Component remove(Component component) { throw new Exception(); }
Beispiel #5
0
 public Component insert(double index, Component component) { throw new Exception(); }
Beispiel #6
0
 public static void unregister(Component c) { throw new Exception(); }
Beispiel #7
0
 public static bool isRegistered(Component xtype) { throw new Exception(); }