Skip to content
This repository was archived by the owner on Aug 26, 2022. It is now read-only.

Commit 262b1e0

Browse files
authored
Remove references to System.Drawing from README
1 parent d9996a7 commit 262b1e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ sheet.Cells["B1"].Border = CellBorder.Bottom | CellBorder.Right;
7474
Cell myCell = "Test Cell";
7575
myCell.FontName = "Comic Sans MS";
7676
myCell.FontSize = 18;
77-
myCell.TextColor = System.Drawing.Color.Violet;
77+
myCell.TextColor = Color.Violet;
7878
myCell.Bold = true;
7979
myCell.Italic = true;
8080
myCell.Underline = true;
@@ -102,7 +102,7 @@ sheet.Cells["A1"] = "Title!";
102102
sheet.Cells["A1"].Bold = true;
103103
sheet.Cells["A2"] = "Subtitle!";
104104
sheet.Cells["A2"].Bold = true;
105-
sheet.Cells["A2"].TextColor = System.Drawing.Color.Magenta;
105+
sheet.Cells["A2"].TextColor = Color.Magenta;
106106
for (int i = 0; i < 100; i++)
107107
{
108108
sheet.Cells[i + 2, 0] = "Entry Number " + (i + 1);
@@ -252,4 +252,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
252252

253253
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
254254

255-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
255+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)