GC.Spread.Sheets 名前空間 > Worksheet タイプ : 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; |
//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);