C# Class GrayIris.Utilities.UI.Controls.YaTabControl.ControlCollection

A YaTabControl-specific Control.ControlCollection.
Inheritance: System.Windows.Forms.Control.ControlCollection
ファイルを表示 Open project: realistschuckle/yet-another-tab-control

Public Methods

Method Description
Add ( Control value ) : void

Overridden. Adds a Control to the YaTabControl.

Clear ( ) : void

Overridden. Inherited from Control.ControlCollection.Clear().

ControlCollection ( Control owner ) : System

Creates a new instance of the YaTabControl.ControlCollection class with the specified owner.

Remove ( Control value ) : void

Overridden. Inherited from Control.ControlCollection.Remove( Control ).

Method Details

Add() public method

Overridden. Adds a Control to the YaTabControl.
/// Thrown if value is null. /// /// Thrown if value is not a . ///
public Add ( Control value ) : void
value System.Windows.Forms.Control /// The to add, which must be a /// . ///
return void

Clear() public method

Overridden. Inherited from Control.ControlCollection.Clear().
public Clear ( ) : void
return void

ControlCollection() public method

Creates a new instance of the YaTabControl.ControlCollection class with the specified owner.
/// Thrown if owner is null. /// /// Thrown if owner is not a . ///
public ControlCollection ( Control owner ) : System
owner System.Windows.Forms.Control /// The that owns this collection. ///
return System

Remove() public method

Overridden. Inherited from Control.ControlCollection.Remove( Control ).
public Remove ( Control value ) : void
value System.Windows.Forms.Control
return void