FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetSelectionModel Class : SetAnchor Method |
'Usage Dim instance As DefaultSheetSelectionModel Dim row As Integer Dim column As Integer instance.SetAnchor(row, column)
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.SetAnchor(1, 1);
defselModel.ExtendSelection(4, 4);
Dim defselModel As New FarPoint.Win.Spread.Model.DefaultSheetSelectionModel() FpSpread1.ActiveSheet.Models.Selection = defselModel defselModel.SetAnchor(1, 1) defselModel.ExtendSelection(4, 4)
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8