Class WidgetCollectionBase<T>
Represents a collection of widgets from specific type.
Inheritance
System.Object
WidgetCollectionBase<T>
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Windows.Documents.Fixed.Model.InteractiveForms
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class WidgetCollectionBase<T> : IEnumerable<T>, IEnumerable where T : Widget
Type Parameters
T
The widget type. |
Properties
Count
Gets the count of the widgets in the collection.
Declaration
public int Count { get; }
Property Value
System.Int32
|
Methods
GetEnumerator()
Iterates the options in the collection.
Declaration
public IEnumerator<T> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<T>
The options. |
Implements
System.Collections.Generic.IEnumerable<T>.GetEnumerator()
Remove(T)
Removes widget from the collection
Declaration
public void Remove(T widget)
Parameters
T
widget
The widget to remove. |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Iterates the options in the collection.
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator
The options. |
Implements
System.Collections.IEnumerable.GetEnumerator()