Spread Windows Forms 7.0 Product Documentation
ExtendSelection Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetSelectionModel Class : ExtendSelection Method


extendRow
Row index of the farthest cell in the selection
extendColumn
Column index of the farthest cell in the selection

Glossary Item Box

Specifies the extent (or farthest cell) in the selection of cells.

Syntax

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

Remarks

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.

Example

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 BasicCopy Code
Dim defselModel As New FarPoint.Win.Spread.Model.DefaultSheetSelectionModel()
FpSpread1.ActiveSheet.Models.Selection = defselModel
defselModel.ExtendSelection(6, 7)

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.