ComboBox.ObjectCollection Class
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the collection of items in a ComboBox.
public: ref class ComboBox::ObjectCollection : System::Collections::IList
public: ref class ComboBox::ObjectCollection : System::Collections::Generic::IComparer<System::Windows::Forms::ComboBox::ObjectCollection::Entry ^>, System::Collections::IList
[System.ComponentModel.ListBindable(false)]
public class ComboBox.ObjectCollection : System.Collections.IList
[System.ComponentModel.ListBindable(false)]
public class ComboBox.ObjectCollection : System.Collections.Generic.IComparer<System.Windows.Forms.ComboBox.ObjectCollection.Entry>, System.Collections.IList
[<System.ComponentModel.ListBindable(false)>]
type ComboBox.ObjectCollection = class
interface IList
interface ICollection
interface IEnumerable
[<System.ComponentModel.ListBindable(false)>]
type ComboBox.ObjectCollection = class
interface IList
interface ICollection
interface IEnumerable
interface IComparer<ComboBox.ObjectCollection.Entry>
Public Class ComboBox.ObjectCollection
Implements IList
Public Class ComboBox.ObjectCollection
Implements IComparer(Of ComboBox.ObjectCollection.Entry), IList
- Inheritance
-
ComboBox.ObjectCollection
- Attributes
- Implements
The System.Windows.Forms.ComboBox.ObjectCollection class encapsulates the items in the ComboBox. The object collection of a combo box can be used to manage many types of objects, including strings, images, and custom business objects.
You can add items to the collection in several ways. The Add method adds one object to the collection. To add a number of objects to the collection, it is best to create an array of items and assign with the AddRange method. To insert an object at a specific location within the collection, you can use the Insert method. To remove items at a known index in the collection you can use either the Remove method or the RemoveAt method. The Clear method removes all the items from the collection.
In addition to methods and properties for adding and removing items, the System.Windows.Forms.ComboBox.ObjectCollection also provides methods to find items within the collection. The Contains method enables you to determine if an object is a member of the collection. Once you know that the item is located within the collection, you can use the IndexOf method to determine where the item is located within the collection.
Combo |
Initializes a new instance of ComboBox.ObjectCollection. |
Count |
Gets the number of items in the collection. |
Is |
Gets a value indicating whether this collection can be modified. |
Item[Int32] |
Retrieves the item at the specified index within the collection. |
Add(Object) |
Adds an item to the list of items for a ComboBox. |
Add |
Adds an array of items to the list of items for a ComboBox. |
Clear() |
Removes all items from the ComboBox. |
Contains(Object) |
Determines if the specified item is located within the collection. |
Copy |
Copies the entire collection into an existing array of objects at a specified location within the array. |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
Get |
Returns an enumerator that can be used to iterate through the item collection. |
Get |
Serves as the default hash function. (Inherited from Object) |
Get |
Gets the Type of the current instance. (Inherited from Object) |
Index |
Retrieves the index within the collection of the specified item. |
Insert(Int32, Object) |
Inserts an item into the collection at the specified index. |
Memberwise |
Creates a shallow copy of the current Object. (Inherited from Object) |
Remove(Object) |
Removes the specified item from the ComboBox. |
Remove |
Removes an item from the ComboBox at the specified index. |
To |
Returns a string that represents the current object. (Inherited from Object) |
ICollection. |
For a description of this member, see CopyTo(Array, Int32). |
ICollection. |
For a description of this member, see IsSynchronized. |
ICollection. |
For a description of this member, see SyncRoot. |
IComparer<Combo |
Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other. |
IList. |
For a description of this member, see Add(Object). |
IList. |
For a description of this member, see IsFixedSize. |
Cast<TResult>(IEnumerable) |
Casts the elements of an IEnumerable to the specified type. |
Of |
Filters the elements of an IEnumerable based on a specified type. |
As |
Enables parallelization of a query. |
As |
Converts an IEnumerable to an IQueryable. |
제품 | 버전 |
---|---|
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Windows Desktop | 3.0, 3.1, 5, 6, 7, 8, 9 |
.NET 피드백
.NET은(는) 오픈 소스 프로젝트입니다. 다음 링크를 선택하여 피드백을 제공해 주세요.