Adds a cell or cells to the selection.
Syntax
Parameters
- row
- Row index of the first cell to add
- column
- Column index of the first cell to add
- rowCount
- Number of rows to add
- columnCount
- Number of columns to add
Example
This example creates a default selection model and uses it to add a selection to the active sheet.
C# | Copy Code |
---|
FarPoint.Win.Spread.Model.DefaultSheetSelectionModel defselModel = new FarPoint.Win.Spread.Model.DefaultSheetSelectionModel();
fpSpread1.ActiveSheet.Models.Selection = defselModel;
defselModel.AddSelection(0,0,3,4); |
Visual Basic | Copy Code |
---|
Dim defselModel As New FarPoint.Win.Spread.Model.DefaultSheetSelectionModel()
FpSpread1.ActiveSheet.Models.Selection = defselModel
defselModel.AddSelection(0, 0, 3, 4) |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also