コード例 #1
0
ファイル: Container.cs プロジェクト: JimmyJune/DotWeb-Contrib
		/// <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);
コード例 #2
0
ファイル: Container.cs プロジェクト: JimmyJune/DotWeb-Contrib
		/// <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);
コード例 #3
0
ファイル: extjs-3.1.0.cs プロジェクト: fjgandrade/sharpkit
 public Component remove(Component component, bool autoDestroy) { throw new Exception(); }
コード例 #4
0
ファイル: extjs-3.1.0.cs プロジェクト: fjgandrade/sharpkit
 public Component remove(Component component) { throw new Exception(); }
コード例 #5
0
ファイル: extjs-3.1.0.cs プロジェクト: fjgandrade/sharpkit
 public Component insert(double index, Component component) { throw new Exception(); }
コード例 #6
0
ファイル: extjs-3.1.0.cs プロジェクト: fjgandrade/sharpkit
 public static void unregister(Component c) { throw new Exception(); }
コード例 #7
0
ファイル: extjs-3.1.0.cs プロジェクト: fjgandrade/sharpkit
 public static bool isRegistered(Component xtype) { throw new Exception(); }