ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید









ControlCollection

System.Web.UI (system.web.dll)class

This class represents a collection of controls. It allows pages and
other controls to specify their child controls (as with the
Page.Controls Property).

public class 

ControlCollection : ICollection, IEnumerable {
// Public Constructors
public

ControlCollection (Control

owner );
// Public Instance Properties
public int

Count {get; } // implements ICollection
public bool

IsReadOnly {get; }
public bool

IsSynchronized {get; } // implements ICollection
public object

SyncRoot {get; } // implements ICollection
public virtual Control

this [int

index ]{get; }
// Protected Instance Properties
protected Control

Owner {get; }
// Public Instance Methods
public virtual void

Add (Control

child );
public virtual void

AddAt (int

index , Control

child );
public virtual void

Clear ( );
public virtual bool

Contains (Control

c );
public void

CopyTo (Array

array , int

index ); // implements ICollection
public IEnumerator

GetEnumerator ( ); // implements IEnumerable
public virtual int

IndexOf (Control

value );
public virtual void

Remove (Control

value );
public virtual void

RemoveAt (int

index );
}



Subclasses


EmptyControlCollection

Returned By


Control.{Controls,
CreateControlCollection( )}


/ 873