C# 클래스 ZForge.Controls.ExplorerBar.Expando.ItemCollection

Represents a collection of Control objects
상속: System.Collections.CollectionBase
파일 보기 프로젝트 열기: zhuangyy/Motion

공개 메소드들

메소드 설명
Add ( Control value ) : void

Adds the specified control to the control collection

AddRange ( Control controls ) : void

Adds an array of control objects to the collection

Clear ( ) : void

Removes all controls from the collection

Contains ( Control control ) : bool

Determines whether the specified control is a member of the collection

IndexOf ( Control control ) : int

Retrieves the index of the specified control in the control collection

ItemCollection ( Expando owner ) : System

Initializes a new instance of the Expando.ItemCollection class

Move ( Control value, int index ) : void

Moves the specified control to the specified indexed location in the control collection

MoveToBottom ( Control value ) : void

Moves the specified control to the bottom of the control collection

MoveToTop ( Control value ) : void

Moves the specified control to the top of the control collection

Remove ( Control value ) : void

Removes the specified control from the control collection

RemoveAt ( int index ) : void

Removes a control from the control collection at the specified indexed location

this ( int index ) : Control

The Control located at the specified index location within the control collection

메소드 상세

Add() 공개 메소드

Adds the specified control to the control collection
public Add ( Control value ) : void
value System.Windows.Forms.Control The Control to add to the control collection
리턴 void

AddRange() 공개 메소드

Adds an array of control objects to the collection
public AddRange ( Control controls ) : void
controls System.Windows.Forms.Control An array of Control objects to add /// to the collection
리턴 void

Clear() 공개 메소드

Removes all controls from the collection
public Clear ( ) : void
리턴 void

Contains() 공개 메소드

Determines whether the specified control is a member of the collection
public Contains ( Control control ) : bool
control System.Windows.Forms.Control The Control to locate in the collection
리턴 bool

IndexOf() 공개 메소드

Retrieves the index of the specified control in the control collection
public IndexOf ( Control control ) : int
control System.Windows.Forms.Control The Control to locate in the collection
리턴 int

ItemCollection() 공개 메소드

Initializes a new instance of the Expando.ItemCollection class
public ItemCollection ( Expando owner ) : System
owner Expando An Expando representing the expando that owns /// the Control collection
리턴 System

Move() 공개 메소드

Moves the specified control to the specified indexed location in the control collection
public Move ( Control value, int index ) : void
value System.Windows.Forms.Control The control to be moved
index int The indexed location in the control collection /// that the specified control will be moved to
리턴 void

MoveToBottom() 공개 메소드

Moves the specified control to the bottom of the control collection
public MoveToBottom ( Control value ) : void
value System.Windows.Forms.Control The control to be moved
리턴 void

MoveToTop() 공개 메소드

Moves the specified control to the top of the control collection
public MoveToTop ( Control value ) : void
value System.Windows.Forms.Control The control to be moved
리턴 void

Remove() 공개 메소드

Removes the specified control from the control collection
public Remove ( Control value ) : void
value System.Windows.Forms.Control The Control to remove from the /// Expando.ItemCollection
리턴 void

RemoveAt() 공개 메소드

Removes a control from the control collection at the specified indexed location
public RemoveAt ( int index ) : void
index int The index value of the Control to /// remove
리턴 void

this() 공개 메소드

The Control located at the specified index location within the control collection
public this ( int index ) : Control
index int The index of the control to retrieve /// from the control collection
리턴 System.Windows.Forms.Control