この例では、SheetViewオブジェクトを作成し、それをスプレッドシートのアクティブシートに割り当て、アクティブセルの背景色を変更します。
Dim sv As FarPoint.Web.Spread.SheetView
sv = FpSpread1.ActiveSheetView
sv.ActiveColumn = 1
sv.ActiveRow = 2
sv.Cells(sv.ActiveRow, sv.ActiveColumn).BackColor = Color.Yellow
FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView;
sv.ActiveColumn = 1;
sv.ActiveRow = 2;
sv.Cells[sv.ActiveRow, sv.ActiveColumn].BackColor = Color.Yellow;