Property | Type | Description | |
---|---|---|---|
GetExternalEnumerator | IEnumerator | ||
GetInternalChild | Visual | ||
GetInternalEnumerator | IEnumerator | ||
InternalAdd | void | ||
InternalRemove | void | ||
ValidateElement | void | ||
VerifyWriteAccess | void |
Method | Description | |
---|---|---|
Add ( UIElement element ) : int |
Adds the specified element to the collection.
|
|
Clear ( ) : void |
Removes all elements from the collection.
|
|
Contains ( UIElement element ) : bool |
Determines whether the collection contains a specific element.
|
|
CopyTo ( |
Copies the elements from the collection to the array.
|
|
CopyTo ( UIElement array, int index ) : void |
Copies the elements from the collection to the element array.
|
|
GetEnumerator ( ) : IEnumerator |
Returns an enumerator that iterates through a collection.
|
|
IndexOf ( UIElement element ) : int |
Determines the index of a specific item in the collection.
|
|
Insert ( int index, UIElement element ) : void |
Inserts an element into a collection at the specified index position.
|
|
MetaElementCollection ( UIElement visualParent, |
Initialize a new instance of the MetaElementCollection class.
|
|
Remove ( UIElement element ) : void |
Removes the specified element from the collection.
|
|
RemoveAt ( int index ) : void |
Removes the UIElement at the specified index.
|
|
RemoveRange ( int index, int count ) : void |
Removes a range of elements from the collection.
|
|
this ( int index ) : UIElement |
Gets or sets the UIElement stored at the zero-based index position of the collection.
|
Method | Description | |
---|---|---|
OnUIElementsAdded ( |
Raises the UIElementsAdded event.
|
|
OnUIElementsRemove ( |
Raises the UIElementsRemove event.
|
Method | Description | |
---|---|---|
GetExternalEnumerator ( ) : IEnumerator | ||
GetInternalChild ( int index ) : Visual | ||
GetInternalEnumerator ( ) : IEnumerator | ||
InternalAdd ( UIElement element ) : void | ||
InternalRemove ( UIElement element ) : void | ||
ValidateElement ( UIElement element ) : void | ||
VerifyWriteAccess ( ) : void |
public Add ( UIElement element ) : int | ||
element | UIElement | The UIElement to add. |
return | int |
public Contains ( UIElement element ) : bool | ||
element | UIElement | The UIElement to locate in the collection. |
return | bool |
public CopyTo ( |
||
array | Array that is the destination for copying. | |
index | int | Zero-based index in the array at which copying begins. |
return | void |
public CopyTo ( UIElement array, int index ) : void | ||
array | UIElement | UIElement that is the destination for copying. |
index | int | Zero-based index in the array at which copying begins. |
return | void |
public IndexOf ( UIElement element ) : int | ||
element | UIElement | The UIElement to locate in the collection. |
return | int |
public Insert ( int index, UIElement element ) : void | ||
index | int | The index position where you want to insert the element. |
element | UIElement | The element to insert into the collection. |
return | void |
public MetaElementCollection ( UIElement visualParent, |
||
visualParent | UIElement | The UIElement parent of the collection. |
logicalParent | The logical parent of the elements in the collection. | |
return | System |
protected OnUIElementsAdded ( |
||
e | An UIElementsEventArgs containing the event data. | |
return | void |
protected OnUIElementsRemove ( |
||
e | An UIElementsEventArgs containing the event data. | |
return | void |
public Remove ( UIElement element ) : void | ||
element | UIElement | The element to remove from the collection. |
return | void |
public RemoveAt ( int index ) : void | ||
index | int | The index of the UIElement that you want to remove. |
return | void |
public RemoveRange ( int index, int count ) : void | ||
index | int | The index position of the element where removal begins. |
count | int | The number of elements to remove. |
return | void |
public this ( int index ) : UIElement | ||
index | int | The index position of the UIElement. |
return | UIElement |