From c10fed7daa5d10dc0e451bee8d7fe15a0f8a0709 Mon Sep 17 00:00:00 2001 From: wkoichi Date: Fri, 7 Oct 2016 23:55:56 +0900 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ef41ed9..854054e 100644 --- a/README.md +++ b/README.md @@ -30,13 +30,13 @@ using (var app = new WindowsAppFriend(process)) sheet = spread.ActiveSheet; //cell. - var cell = sheet.Cells[0. 3]; + var cell = sheet.Cells[0, 3]; cell = sheet.ActiveCell; string text = cell.Text; int rowIndex = cell.Row.Index; int rowIndex2 = cell.Row.Index2; - int rowIndex = cell.Column.Index; - int rowIndex2 = cell.Column.Index2; + int columnIndex = cell.Column.Index; + int columnIndex2 = cell.Column.Index2; sheet.EmulateChangeActiveCell(3, 5, true); sheet.EmulateAddSelection(1, 2, 3, 5); sheet.EmulateRemoveSelection(1, 2, 3, 5);