InlineCollection Class
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Represents a collection of Inline elements.
System.Windows::DependencyObject
System.Windows::PresentationFrameworkCollection<Inline>
System.Windows.Documents::TextElementCollection<Inline>
System.Windows.Documents::InlineCollection
Assembly: System.Windows (in System.Windows.dll)
XMLNS for XAML: Not mapped to an xmlns.
The InlineCollection type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Count | Gets the number of elements contained in the PresentationFrameworkCollection<T>. (Inherited from PresentationFrameworkCollection<T>.) |
![]() | Dispatcher | Gets the Dispatcher this object is associated with. (Inherited from DependencyObject.) |
![]() | IsFixedSize | Gets a value indicating whether the PresentationFrameworkCollection<T> has a fixed size. (Inherited from PresentationFrameworkCollection<T>.) |
![]() | IsReadOnly | Gets a value indicating whether the PresentationFrameworkCollection<T> is read-only. (Inherited from PresentationFrameworkCollection<T>.) |
![]() | IsSynchronized | Gets a value indicating whether access to the PresentationFrameworkCollection<T> is synchronized (thread safe). (Inherited from PresentationFrameworkCollection<T>.) |
![]() | Item | Gets or sets the element at the specified index. (Inherited from PresentationFrameworkCollection<T>.) |
![]() | SyncRoot | Gets an object that can be used to synchronize access to the PresentationFrameworkCollection<T>. (Inherited from PresentationFrameworkCollection<T>.) |
| Name | Description | |
|---|---|---|
![]() | Add(T) | Adds an item to the PresentationFrameworkCollection<T>. (Inherited from PresentationFrameworkCollection<T>.) |
![]() | Add(String) | Adds a string to the collection. |
![]() | CheckAccess | Determines whether the calling thread has access to this object. (Inherited from DependencyObject.) |
![]() | Clear | Removes all items from the PresentationFrameworkCollection<T>. (Inherited from PresentationFrameworkCollection<T>.) |
![]() | ClearValue | Clears the local value of a dependency property. (Inherited from DependencyObject.) |
![]() | Contains | Determines whether the PresentationFrameworkCollection<T> contains a specific value. (Inherited from PresentationFrameworkCollection<T>.) |
![]() | CopyTo(array<T>, Int32) | Copies the elements of the PresentationFrameworkCollection<T> to an Array, starting at a particular Array index. (Inherited from PresentationFrameworkCollection<T>.) |
![]() | CopyTo(Array, Int32) | Copies the elements of the PresentationFrameworkCollection<T> to an Array, starting at a particular Array index. (Inherited from PresentationFrameworkCollection<T>.) |
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetAnimationBaseValue | Returns any base value established for a Windows Phone dependency property, which would apply in cases where an animation is not active. (Inherited from DependencyObject.) |
![]() | GetEnumerator | Returns an enumerator that iterates through a collection. (Inherited from PresentationFrameworkCollection<T>.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | GetValue | Returns the current effective value of a dependency property from a DependencyObject. (Inherited from DependencyObject.) |
![]() | IndexOf | Determines the index of a specific item in the PresentationFrameworkCollection<T>. (Inherited from PresentationFrameworkCollection<T>.) |
![]() | Insert | Inserts an item to the PresentationFrameworkCollection<T> at the specified index. (Inherited from PresentationFrameworkCollection<T>.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ReadLocalValue | Returns the local value of a dependency property, if a local value is set. (Inherited from DependencyObject.) |
![]() | Remove | Removes the first occurrence of a specific object from the PresentationFrameworkCollection<T>. (Inherited from PresentationFrameworkCollection<T>.) |
![]() | RemoveAt | Removes the item at the specified index. (Inherited from PresentationFrameworkCollection<T>.) |
![]() | SetValue | Sets the local value of a dependency property on a DependencyObject. (Inherited from DependencyObject.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IEnumerable::GetEnumerator | Returns an enumerator that iterates through a collection. (Inherited from PresentationFrameworkCollection<T>.) |
![]() ![]() | IList::Add | Adds an item to the PresentationFrameworkCollection<T>. (Inherited from PresentationFrameworkCollection<T>.) |
![]() ![]() | IList::Contains | Determines whether the PresentationFrameworkCollection<T> contains a specific value. (Inherited from PresentationFrameworkCollection<T>.) |
![]() ![]() | IList::IndexOf | Determines the index of a specific item in the PresentationFrameworkCollection<T>. (Inherited from PresentationFrameworkCollection<T>.) |
![]() ![]() | IList::Insert | Inserts an item to the PresentationFrameworkCollection<T> at the specified index. (Inherited from PresentationFrameworkCollection<T>.) |
![]() ![]() | IList::Item | Gets or sets the element at the specified index. (Inherited from PresentationFrameworkCollection<T>.) |
![]() ![]() | IList::Remove | Removes the first occurrence of a specific object from the PresentationFrameworkCollection<T>. (Inherited from PresentationFrameworkCollection<T>.) |
In the Windows Phone content model, InlineCollection only exists as a property value for an object that has a property of type InlineCollection, such as the Inlines property of TextBlock. An InlineCollection object cannot be instantiated directly (in XAML or in code), and it has no default or overloaded constructor.
You cannot explicitly define an InlineCollection property element in XAML syntax. The XAML parser implicitly accesses a preexisting InlineCollection that is held by a TextBlock. It then adds any child elements found in the Inlines property to that existing collection.
In XAML, you include one or more objects that derive from Inline (Run and LineBreak object elements) as child elements of a TextBlock. The order of the Run and LineBreak elements in the XAML is significant because it defines the presentation order in which the elements are rendered in the TextBlock. This is true also for the order of the InlineCollection items if you access the collection items in code.
You do not have to specify a TextBlock.Inlines property element, because Inlines is the XAML content property for TextBlock. For more information about XAML content properties and XAML implicit collection syntax, see XAML for Windows Phone 8.
In addition to the implicit collection syntax of InlineCollection, TextBlock lets you specify content as inner text. You can also set content by setting the value of the Text property as a string. For more information, see TextBlock.
You can view and modify collection contents of the existing InlineCollection through the Inlines property in code.





