ClassRadInlineCollection
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:
public class RadInlineCollection : IEnumerable<Inline>, IEnumerable
Inheritance: objectRadInlineCollection
Implements:
Constructors
RadInlineCollection(RadTextBlock)
Initializes a new instance of the RadInlineCollection class.
Declaration
public RadInlineCollection(RadTextBlock radTextBlock)
Parameters
radTextBlock
The RadTextBlock of this collection.
Properties
Count
Gets the count of the inlines.
Methods
Add(Inline)
Adds the specified inline.
Declaration
public void Add(Inline inline)
Parameters
inline
Inline
The inline.
Clear()
Clears this instance's collection of inlines.
Declaration
public void Clear()
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<Inline> GetEnumerator()
Returns
IEnumerator<Inline>
A IEnumerator<T> that can be used to iterate through the collection.
Implements
InsertAfter(Inline, Inline)
Inserts an inline.
Declaration
public void InsertAfter(Inline existingInline, Inline newInline)
Parameters
existingInline
Inline
The existing inline.
newInline
Inline
The new inline.