Skip to content

Commit

Permalink
Add XML tags to member description
Browse files Browse the repository at this point in the history
  • Loading branch information
omaus committed Mar 12, 2023
1 parent c430d2d commit b4ef99c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/FsSpreadsheet/FsRow.fs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ type FsRow (rangeAddress : FsRangeAddress, cells : FsCellsCollection, styleValue
// _cells <- List.append _cells [cell]
// cell

/// <summary>Returns the FsCell at the given columnIndex from an FsRow.
/// <summary>Returns the FsCell at the given columnIndex from an FsRow.</summary>
static member getCellAt colIndex (row : FsRow) =
row.Cell(colIndex)

Expand All @@ -72,11 +72,11 @@ type FsRow (rangeAddress : FsRangeAddress, cells : FsCellsCollection, styleValue
let cell = FsCell(value)
cells.Add(int32 this.Index, int32 colIndex, cell)

/// Adds a value at the given row- and columnIndex to FsRow using.
/// <summary>Adds a value at the given row- and columnIndex to FsRow using.
///
/// If a cell exists in the given position, shoves it to the right.
/// If a cell exists in the given position, shoves it to the right.</summary>
static member insertValueAt colIndex value (row : FsRow) =
row.InsertValueAt(colIndex, value)
row.InsertValueAt(colIndex, value) |> ignore
row

//member self.SortCells() = _cells <- _cells |> List.sortBy (fun c -> c.WorksheetColumn)
Expand Down

0 comments on commit b4ef99c

Please sign in to comment.