Skip to content

Commit

Permalink
Change XLComment.Visible to autoproperty
Browse files Browse the repository at this point in the history
  • Loading branch information
igitur committed Apr 1, 2019
1 parent 92834c8 commit ff92f07
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions ClosedXML/Excel/Comments/XLComment.cs
Expand Up @@ -58,20 +58,7 @@ public void Delete()
public Int32 ExtentLength { get; set; }
public Int32 ExtentWidth { get; set; }
public Int32 ShapeId { get; internal set; }

private Boolean _visible;

public Boolean Visible
{
get
{
return _visible;
}
set
{
_visible = value;
}
}
public Boolean Visible { get; set; }

public IXLComment SetVisible()
{
Expand Down

0 comments on commit ff92f07

Please sign in to comment.