Class InlineCollection
Manages inline elements within a paragraph, providing strongly-typed add methods for text runs, images, and floating content.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Flow.Model.Collections
Assembly: Telerik.Windows.Documents.Flow.dll
Syntax
public sealed class InlineCollection : DocumentElementCollection<InlineBase, Paragraph>, IList<InlineBase>, ICollection<InlineBase>, IEnumerable<InlineBase>, IEnumerable
Methods
AddFloatingImage()
Creates and appends a new FloatingImage to the collection and returns it for positioning, wrapping, and image configuration.
Declaration
public FloatingImage AddFloatingImage()
Returns
|
FloatingImage
The added floating image. |
AddImageInline()
Creates and appends a new ImageInline to the collection and returns it for image source and sizing configuration.
Declaration
public ImageInline AddImageInline()
Returns
|
ImageInline
The added image inline. |
AddRun()
Creates and appends a new empty Run to the collection and returns it for text and formatting configuration.
Declaration
public Run AddRun()
Returns
|
Run
The added run. |