FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetSelectionModel Class : ExtendSelection Method |
'Declaration Public Overrides Sub ExtendSelection( _ ByVal extendRow As Integer, _ ByVal extendColumn As Integer _ )
'Usage Dim instance As DefaultSheetSelectionModel Dim extendRow As Integer Dim extendColumn As Integer instance.ExtendSelection(extendRow, extendColumn)
public override void ExtendSelection( int extendRow, int extendColumn )
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.
FarPoint.Win.Spread.Model.DefaultSheetSelectionModel defselModel = new FarPoint.Win.Spread.Model.DefaultSheetSelectionModel();
fpSpread1.ActiveSheet.Models.Selection. = defselModel;
defselModel.ExtendSelection(6, 7);
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