diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-04-01 15:58:42 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-04-01 15:58:42 +0300 |
commit | 448af8ecd7bf9db070e090c4b434da693ba0ae89 (patch) | |
tree | ad9a06664be368ebead54b82a965aa86f0a23cca /RhSolutions.ExcelExtensions/ColumnEnumerator.cs | |
parent | da29243d1d661a6e304018e3317c2ca4ea495db8 (diff) |
Move Excel extensions to own project
Diffstat (limited to 'RhSolutions.ExcelExtensions/ColumnEnumerator.cs')
-rw-r--r-- | RhSolutions.ExcelExtensions/ColumnEnumerator.cs | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/RhSolutions.ExcelExtensions/ColumnEnumerator.cs b/RhSolutions.ExcelExtensions/ColumnEnumerator.cs new file mode 100644 index 0000000..9880b5d --- /dev/null +++ b/RhSolutions.ExcelExtensions/ColumnEnumerator.cs @@ -0,0 +1,54 @@ +using System.Collections; + +namespace RhSolutions.ExcelExtensions; + +public class ColumnEnumerator : IEnumerator<TableCell> +{ + public Range Range { get; } + public Table ParentTable { get; } + private int position = 0; + object IEnumerator.Current + { + get + { + return Current; + } + } + + public TableCell Current + { + get + { + try + { + return new TableCell(Range.Cells[position, 1], ParentTable); + } + catch (IndexOutOfRangeException) + { + throw new InvalidOperationException(); + } + } + } + + public ColumnEnumerator(Range range, Table table) + { + Range = range; + ParentTable = table; + } + + public bool MoveNext() + { + position++; + return (position <= Range.Rows.Count); + } + + public void Reset() + { + position = 0; + } + + public void Dispose() + { + + } +} |