12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Text;
- using FastReport.Utils;
- namespace FastReport.Table
- {
- /// <summary>
- /// Represents a collection of <see cref="TableRow"/> objects.
- /// </summary>
- public class TableRowCollection : FRCollectionBase
- {
- /// <summary>
- /// Gets a row with specified index.
- /// </summary>
- /// <param name="index">Index of a row.</param>
- /// <returns>The row with specified index.</returns>
- public TableRow this[int index]
- {
- get
- {
- TableRow row = List[index] as TableRow;
- row.SetIndex(index);
- return row;
- }
- }
- /// <inheritdoc/>
- protected override void OnInsert(int index, object value)
- {
- base.OnInsert(index, value);
- if (Owner != null)
- (Owner as TableBase).CorrectSpansOnRowChange(index, 1);
- }
- /// <inheritdoc/>
- protected override void OnRemove(int index, object value)
- {
- base.OnRemove(index, value);
- if (Owner != null)
- (Owner as TableBase).CorrectSpansOnRowChange(index, -1);
- }
- internal TableRowCollection(Base owner) : base(owner)
- {
- }
- }
- }
|