setViewportTopRow 是 FpSpread的方法,不是sheet的
//
// 摘要:
// Sets the top row of cells of the specified viewport row for the specified sheet.
//
// 参数:
// sheetIndex:
// Index of the sheet
//
// rowViewportIndex:
// Index of the viewport row
//
// value:
// Index of the row to set as the top of that viewport
//
// 异常:
// T:System.ArgumentOutOfRangeException:
// Specified sheet index is out of range; must be between 0 and the total number
// of sheets
public void SetViewportTopRow(int sheetIndex, int rowViewportIndex, int value);
//
// 摘要:
// Sets the top row of cells of the specified viewport row for the active sheet.
//
// 参数:
// rowViewportIndex:
// Index of the viewport row
//
// value:
// Index of the row to set as the top of that viewport
public void SetViewportTopRow(int rowViewportIndex, int value);
|