Working with Tables in Code
This article shows you can create or retrieve tables in the code behind.
Creating a Table Programmatically
The RadRichTextBox exposes a rich API, which allows you to use various methods to add, modify or delete elements from the RadDocument. Information about the table properties and methods can be found here: Properties and Methods
Example 1: Create a Table in Code-Behind
Figure 1 shows the result of the code in Example 1.
Figure 1: Table generated in code-behind
Row and Column Span
In order to merge cells in the table you can use the RowSpan and ColumnSpan properties of the TableCell. The below code shows how you can use these properties to create a complex table header.
Please note that when using RowSpan and ColumnSpan the cells are not merged. The cells are only resized and they will be on top of the other cells.
Example 2: Use RowSpan and ColumnSpan Properties
The result is demonstrated in the following image.
Figure 2: Merging cells with RowsSpan and ColSpan properties
Get and Iterate Tables from existing document
In order to iterate a table you need to get it first. You can use the EnumerateChildrenOfType method to get all tables in the document.
Example 3: Get all tables from an existing document
Now that you have the table you can iterate the rows and columns by using the following approach.