Skip to content
Merged
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
16 changes: 8 additions & 8 deletions ooxml/XSSF/UserModel/XSSFClientAnchor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ public override int Dx1
}
set
{
cell1.colOff = value;
Cell1.colOff = value;
}
}

Expand All @@ -471,7 +471,7 @@ public override int Dy1
}
set
{
cell1.rowOff = value;
Cell1.rowOff = value;
}
}

Expand All @@ -483,7 +483,7 @@ public override int Dy2
}
set
{
cell2.rowOff = value;
Cell2.rowOff = value;
}
}

Expand All @@ -495,7 +495,7 @@ public override int Dx2
}
set
{
cell2.colOff = value;
Cell2.colOff = value;
}
}
public AnchorType AnchorType
Expand All @@ -514,7 +514,7 @@ public int Col1
{
get
{
return cell1.col;
return Cell1.col;
}
set
{
Expand All @@ -530,7 +530,7 @@ public int Col2
}
set
{
cell2.col = value;
Cell2.col = value;
}
}

Expand All @@ -542,7 +542,7 @@ public int Row1
}
set
{
cell1.row = value;
Cell1.row = value;
}
}

Expand All @@ -554,7 +554,7 @@ public int Row2
}
set
{
cell2.row = value;
Cell2.row = value;
}
}

Expand Down
Loading