/// <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);
/// <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);
public Component remove(Component component, bool autoDestroy) { throw new Exception(); }
public Component remove(Component component) { throw new Exception(); }
public Component insert(double index, Component component) { throw new Exception(); }
public static void unregister(Component c) { throw new Exception(); }
public static bool isRegistered(Component xtype) { throw new Exception(); }