Visual Basic (Declaration) | |
---|---|
Public Overrides Sub ExtendSelection( _ ByVal extendRow As Integer, _ ByVal extendColumn As Integer _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As DefaultSheetSelectionModel Dim extendRow As Integer Dim extendColumn As Integer instance.ExtendSelection(extendRow, extendColumn) |
C# | |
---|---|
public override void ExtendSelection( int extendRow, int extendColumn ) |
Parameters
- extendRow
- Row index of the farthest cell in the selection
- extendColumn
- Column index of the farthest cell in the selection
The extent of the selection is determined by two numbers, the anchor (or first cell) and the extent (or farthest cell). Specify the anchor by using the SetAnchor method (or AnchorRow and AnchorColumn properties). Specify the extent by using the ExtendSelection method (or LeadRow and LeadColumn properties). Or use the SetSelection method to define both. Between (and including) the anchor and the extent is the selection or selected range of cells.
This example extends the selection.
C# | Copy Code |
---|---|
FarPoint.Win.Spread.Model.DefaultSheetSelectionModel defselModel = new FarPoint.Win.Spread.Model.DefaultSheetSelectionModel();
fpSpread1.ActiveSheet.Models.Selection. = defselModel;
defselModel.ExtendSelection(6, 7); |
Visual Basic | Copy Code |
---|---|
Dim defselModel As New FarPoint.Win.Spread.Model.DefaultSheetSelectionModel() FpSpread1.ActiveSheet.Models.Selection = defselModel defselModel.ExtendSelection(6, 7) |
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8