TableRowGroup.Rows Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Получает TableRowCollection с объектами TableRow, составляющими содержимое TableRowGroup.
public:
property System::Windows::Documents::TableRowCollection ^ Rows { System::Windows::Documents::TableRowCollection ^ get(); };
public System.Windows.Documents.TableRowCollection Rows { get; }
member this.Rows : System.Windows.Documents.TableRowCollection
Public ReadOnly Property Rows As TableRowCollection
Значение свойства
TableRowCollection с элементами TableRow, составляющими содержимое TableRowGroup. Это свойство не имеет значения по умолчанию.
Примеры
В следующих примерах показано, как использовать это свойство для выполнения общих операций с .TableRowGroup
Table tbl = new Table();
TableRowGroup trg = new TableRowGroup();
tbl.RowGroups.Add(trg);
// Add rows to a TableRowGroup collection.
int rowsToAdd = 4;
for (int x = 0; x < rowsToAdd; x++)
trg.Rows.Add(new TableRow());
// Insert a new first row (at the zero-index position).
trg.Rows.Insert(0, new TableRow());
// Manipulate rows...
// Set the background on the first row.
trg.Rows[0].Background = Brushes.CornflowerBlue;
// Set the font size on the second row.
trg.Rows[1].FontSize = 24;
// Set a tooltip for the third row.
trg.Rows[2].ToolTip = "This row's tooltip";
// Adding cells to a row...
{
int cellsToAdd = 10;
for (int x = 0; x < cellsToAdd; x++)
trg.Rows[0].Cells.Add(new TableCell(new Paragraph(new Run("Cell " + (x + 1)))));
}
// Count rows.
int rows = trg.Rows.Count;
// Remove 1st row by reference.
trg.Rows.Remove(trg.Rows[0]);
// Remove all rows...
trg.Rows.Clear();
Dim tbl As New Table()
Dim trg As New TableRowGroup()
tbl.RowGroups.Add(trg)
' Add rows to a TableRowGroup collection.
Dim rowsToAdd As Integer = 4
For x As Integer = 0 To rowsToAdd - 1
trg.Rows.Add(New TableRow())
Next x
' Insert a new first row (at the zero-index position).
trg.Rows.Insert(0, New TableRow())
' Manipulate rows...
' Set the background on the first row.
trg.Rows(0).Background = Brushes.CornflowerBlue
' Set the font size on the second row.
trg.Rows(1).FontSize = 24
' Set a tooltip for the third row.
trg.Rows(2).ToolTip = "This row's tooltip"
' Adding cells to a row...
Dim cellsToAdd As Integer = 10
For x As Integer = 0 To cellsToAdd - 1
trg.Rows(0).Cells.Add(New TableCell(New Paragraph(New Run("Cell " & (x + 1)))))
Next x
' Count rows.
Dim rows As Integer = trg.Rows.Count
' Remove 1st row by reference.
trg.Rows.Remove(trg.Rows(0))
' Remove all rows...
trg.Rows.Clear()
Комментарии
TableRowCollection Используйте возвращаемое этим свойством свойство для перечисления или управления содержимым TableRowGroup элемента (т. е. добавления и удаления строк).