Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement/minor documentation update #141

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ExcelMapper/ColumnInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ public virtual object GetProperty(object o)
}

/// <summary>Specifies a method to use when setting the cell value from an object.</summary>
/// <param name="setCell">The method to use when setting the cell value from an object.</param>
/// <param name="setCell">The method to use when setting the cell value from an object. Action&lt;cell: ICell, property: object&gt;</param>
/// <returns>The <see cref="ColumnInfo"/> object.</returns>
public ColumnInfo SetCellUsing(Action<ICell, object> setCell)
{
Expand All @@ -289,7 +289,7 @@ public ColumnInfo SetCellUsing(Action<ICell, object> setCell)
}

/// <summary>Specifies a method to use when setting the cell value from an object.</summary>
/// <param name="setCell">The method to use when setting the cell value from an object.</param>
/// <param name="setCell">The method to use when setting the cell value from an object. Action&lt;cell: ICell, property: T&gt;</param>
/// <returns>The <see cref="ColumnInfo"/> object.</returns>
public ColumnInfo SetCellUsing<T>(Action<ICell, T> setCell)
{
Expand All @@ -298,7 +298,7 @@ public ColumnInfo SetCellUsing<T>(Action<ICell, T> setCell)
}

/// <summary>Specifies a method to use when setting the property value from the cell value.</summary>
/// <param name="setProp">The method to use when setting the property value from the cell value.</param>
/// <param name="setProp">The method to use when setting the property value from the cell value. Func&lt;cellValue: object, out property: object&gt;</param>
/// <returns>The <see cref="ColumnInfo"/> object.</returns>
public ColumnInfo SetPropertyUsing(Func<object, object> setProp)
{
Expand All @@ -307,7 +307,7 @@ public ColumnInfo SetPropertyUsing(Func<object, object> setProp)
}

/// <summary>Specifies a method to use when setting the property value from the cell value.</summary>
/// <param name="setProp">The method to use when setting the property value from the cell value.</param>
/// <param name="setProp">The method to use when setting the property value from the cell value. Func&lt;cellValue: object, cell: ICell, out property: object&gt;</param>
/// <returns>The <see cref="ColumnInfo"/> object.</returns>
public ColumnInfo SetPropertyUsing(Func<object, ICell, object> setProp)
{
Expand Down
Loading