Class BlockCollection
Collection of flow blocks for building content; provides helpers to create blocks, tables, and list-bulleted blocks.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.Editing.Collections
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class BlockCollection : CollectionBase<IBlockElement>, IEnumerable<IBlockElement>, IEnumerable
Methods
AddBlock()
Creates a block, adds it to the collection, and returns it.
Declaration
public Block AddBlock()
Returns
|
Block
The newly created and added block. |
AddBlock(List, Int32)
Creates a block configured with the specified list and level, adds it to the collection, and returns it.
Declaration
public Block AddBlock(List list, int listLevel)
Parameters
|
List
list
The list. |
|
System.Int32
listLevel
The list level. |
Returns
|
Block
The block. |
AddTable()
Creates a table, adds it to the collection, and returns it.
Declaration
public Table AddTable()
Returns
|
Table
The newly created and added table. |