ComponentToolCollection
Wisej.Web.ComponentToolCollection
Last updated
Wisej.Web.ComponentToolCollection
Last updated
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.5.0.0)
Represents a set of tool widgets associated with a component. The component includes the tools panel according to its design. For example, the Form component includes the tools in its caption bar. Other components may include the tools elsewhere.
Initializes a new instance of the ComponentToolCollection class not bound to any control.
Initializes a new instance of the ComponentToolCollection class.
Boolean: Returns a value indicating whether this collection is read-only.
ComponentTool: Returns or sets the ComponentTool at the specified index.
ComponentTool: Returns the ComponentTool identified by the name.
Adds a ComponentTool with the specified name and image source to the collection.
Parameter | Type | Description |
---|---|---|
name | The name of the ComponentTool that is being added. | |
imageSource | The image of the ComponentTool that is being added. |
Returns: ComponentTool. A ComponentTool that represents the panel that was added to the collection.
Adds a ComponentTool to the collection.
Parameter | Type | Description |
---|---|---|
tool | A ComponentTool that represents the panel to add to the collection. |
Throws:
ArgumentNullException The ComponentTool being added to the collection was null.
ArgumentException The parent of the ComponentTool specified in the tool parameter is not null.
Adds an array of ComponentTool to the collection
Parameter | Type | Description |
---|---|---|
tools |
Removes all tools from the collection.
Removes and optionally disposes all tools from the collection.
Parameter | Type | Description |
---|---|---|
dispose | Indicates whether the removed items should be disposed. |
Determines whether the specified panel is located within the collection.
Parameter | Type | Description |
---|---|---|
tool | The ComponentTool to locate in the collection. |
Returns: Boolean. true if the panel is located within the collection; otherwise, false.
Determines whether the collection contains a ComponentTool with the specified key.
Parameter | Type | Description |
---|---|---|
key | The name of the item to find in the collection. |
Returns: Boolean. true to indicate the collection contains a ComponentTool with the specified key; otherwise, false.
Returns an enumerator to use to iterate through the item collection.
Returns: IEnumerator. An IEnumerator that represents the item collection.
Returns the index within the collection of the specified panel.
Parameter | Type | Description |
---|---|---|
tool | The ComponentTool to locate in the collection. |
Returns: Int32. The zero-based index where the panel is located within the collection; otherwise, negative one (-1).
Returns the index of the first occurrence of a ComponentTool with the specified key.
Parameter | Type | Description |
---|---|---|
key | The name of the ComponentTool to find in the collection. |
Returns: Int32. The zero-based index of the first occurrence of the ComponentTool with the specified key, if found; otherwise, -1.
Inserts the specified ComponentTool into the collection at the specified index.
Parameter | Type | Description |
---|---|---|
index | The zero-based index location where the panel is inserted. | |
tool | A ComponentTool representing the panel to insert. |
Throws:
ArgumentNullException The tool parameter is null.
ArgumentException The tool parameter's parent is not null.
ArgumentOutOfRangeException The index parameter is less than zero or greater than the value of the Count property of the ComponentToolCollection class.
Removes the specified ComponentTool from the collection.
Parameter | Type | Description |
---|---|---|
tool | The ComponentTool representing the panel to remove from the collection. |
Returns: Boolean.
Throws:
ArgumentNullException The ComponentTool assigned to the tool parameter is null.
Removes the ComponentTool located at the specified index within the collection.
Parameter | Type | Description |
---|---|---|
index | The zero-based index of the item to remove. |
Throws:
ArgumentOutOfRangeException The index parameter is less than zero or greater than or equal to the value of the Count property of the ComponentToolCollection class.
Removes the ComponentTool with the specified key from the collection.
Parameter | Type | Description |
---|---|---|
key | The name of the ComponentTool to remove from the collection. |