Class
RadInlineCollection

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:

cs-api-definition
public class RadInlineCollection : IEnumerable<Inline>, IEnumerable

Inheritance: objectRadInlineCollection

Implements: IEnumerableIEnumerable<Inline>

Constructors

RadInlineCollection(RadTextBlock)

Initializes a new instance of the RadInlineCollection class.

Declaration

cs-api-definition
public RadInlineCollection(RadTextBlock radTextBlock)

Parameters

radTextBlock

RadTextBlock

The RadTextBlock of this collection.

Properties

Count

Gets the count of the inlines.

Declaration

cs-api-definition
public int Count { get; }

Property Value

int

The count.

this[int]

Gets the Inline at the specified index.

Declaration

cs-api-definition
public Inline this[int index] { get; }

Parameters

index

int

The index of the desired inline.

Property Value

Inline

A Inline instance.

Methods

Add(Inline)

Adds the specified inline.

Declaration

cs-api-definition
public void Add(Inline inline)

Parameters

inline

Inline

The inline.

Clear()

Clears this instance's collection of inlines.

Declaration

cs-api-definition
public void Clear()

GetEnumerator()

Returns an enumerator that iterates through the collection.

Declaration

cs-api-definition
public IEnumerator<Inline> GetEnumerator()

Returns

IEnumerator<Inline>

A IEnumerator<T> that can be used to iterate through the collection.

Implements IEnumerable<Inline>.GetEnumerator()

InsertAfter(Inline, Inline)

Inserts an inline.

Declaration

cs-api-definition
public void InsertAfter(Inline existingInline, Inline newInline)

Parameters

existingInline

Inline

The existing inline.

newInline

Inline

The new inline.