RadInlineCollection
Class
Provides methods and properties for manipulating a collection of inline elements.
Definition
Namespace:Telerik.Windows.Controls.Spreadsheet.Controls
Assembly:Telerik.Windows.Controls.Spreadsheet.dll
Syntax:
C#
public class RadInlineCollection : IEnumerable<Inline>, IEnumerable
Inheritance: objectRadInlineCollection
Implements:
Constructors
Initializes a new instance of the RadInlineCollection class.
C#
public RadInlineCollection(RadTextBlock radTextBlock)
The RadTextBlock of this collection.
Properties
Methods
Adds the specified inline.
C#
public void Add(Inline inline)
The inline.
Clears this instance's collection of inlines.
C#
public void Clear()
GetEnumerator()
IEnumerator<Inline>
Returns an enumerator that iterates through the collection.
C#
public IEnumerator<Inline> GetEnumerator()
IEnumerator<Inline>
A IEnumerator<T> that can be used to iterate through the collection.
Implements:
Inserts an inline.
C#
public void InsertAfter(Inline existingInline, Inline newInline)
The existing inline.
newInlineInlineThe new inline.