Spread.Sheets
showCell メソッド
行インデックス。
列インデックス。
セルを表示する垂直位置。
セルを表示する水平位置。
セルのビューをビューポート内の指定した位置に移動します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.Worksheet(name);
var value; // Type: any
value = instance.showCell(row, col, verticalPosition, horizontalPosition);
Javascript (Specification) 
function showCell( 
   row : number,
   col : number,
   verticalPosition : VerticalPosition,
   horizontalPosition : HorizontalPosition
) : any;

パラメータ

row
行インデックス。
col
列インデックス。
verticalPosition
セルを表示する垂直位置。
horizontalPosition
セルを表示する水平位置。
使用例
次のサンプルコードは、showCellメソッドを使用します。
//Set cell (3,3) as the active cell
activeSheet.setActiveCell(3, 3);
//Display the active cell at top left
activeSheet.showCell(3, 3, GC.Spread.Sheets.VerticalPosition.top, GC.Spread.Sheets.HorizontalPosition.left);

関連トピック

参照

Worksheet タイプ

 

 


© 2016-2017, GrapeCity inc. All rights reserved.