Selects the specified cells.
Syntax
Parameters
- row
- Row index of the first cell
- column
- Column index of the first cell
- rowCount
- Number of rows to add to the first cell to define the selection
- columnCount
- Number of columns to add to the first cell to define the selection
Remarks
Example
This example selects the specified cells in the model.
C# | Copy Code |
---|
FarPoint.Web.Spread.Model.BaseSheetSelectionModel bsm;
bsm = (FarPoint.Web.Spread.Model.BaseSheetSelectionModel)FpSpread1.ActiveSheetView.SelectionModel;
Response.Write("<script>alert('Set Selection?')</script>");
bsm.SetSelection(1, 1, 3, 3);
|
Visual Basic | Copy Code |
---|
Dim bsm As FarPoint.web.Spread.Model.BaseSheetSelectionModel
bsm = FpSpread1.ActiveSheetView.SelectionModel
Response.Write("<script>alert('Set Selection?')</script>")
bsm.SetSelection(1, 1, 3, 3) |
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also