ClassInlineCollection
Wraps an InlineCollection object.
Definition
Namespace:ArtOfTest.WebAii.Controls.Xaml.Silverlight
Assembly:ArtOfTest.WebAii.dll
Syntax:
[DataContract]
public class InlineCollection : AutomationObject<InlineCollection>, IAutomationPeer, IPeerConverter, IList<Inline>, ICollection<Inline>, IEnumerable<Inline>, IEnumerable
Inheritance: objectAutomationObject<InlineCollection>InlineCollection
Implements:
Inherited Members
Constructors
InlineCollection()
Declaration
public InlineCollection()
Properties
Count
Gets the number of elements actually contained in the collection.
IsReadOnly
Gets whether the collection is read only.
Methods
Add(Inline)
Add new item to the collection.
Declaration
public void Add(Inline item)
Parameters
item
The item to be added.
Implements
Clear()
Clears all items in the collection.
Declaration
public void Clear()
Implements
Contains(Inline)
Check if item exists in the collection.
CopyTo(Inline[], int)
Copies the entire collection to a compatible one-dimensional array.
FromRealObject(object)
Converts a Silverlight object to an AutomationObject
Declaration
public override void FromRealObject(object obj)
Parameters
obj
Overrides
GetEnumerator()
Get enumerator.
Declaration
public IEnumerator GetEnumerator()
Returns
The enumerator.
Implements
GetRealType()
Gets the real peer type
IndexOf(Inline)
Get the index of an item.
Insert(int, Inline)
Inserts an element at the specified index.
Remove(Inline)
Removes the first occurrence of a specific object from the list.
RemoveAt(int)
Removes the item at the specified index.
Declaration
public void RemoveAt(int index)
Parameters
index
The zero-based index of the item to remove.
Implements