Spread Windows Forms 6.0 Product Documentation
SelectionPolicy Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetSelectionModel Class : SelectionPolicy Property


Glossary Item Box

Gets or sets whether users can select ranges of items.

Syntax

Visual Basic (Declaration) 
Public Overrides Property SelectionPolicy As SelectionPolicy
Visual Basic (Usage)Copy Code
Dim instance As DefaultSheetSelectionModel
Dim value As SelectionPolicy
 
instance.SelectionPolicy = value
 
value = instance.SelectionPolicy
C# 
public override SelectionPolicy SelectionPolicy {get; set;}

Property Value

SelectionPolicy setting that determines the how selecting can be done

Example

This example specifies whether users can select a single item, a range of items, or multiple ranges.
C#Copy Code
FarPoint.Win.Spread.Model.DefaultSheetSelectionModel defselModel = new FarPoint.Win.Spread.Model.DefaultSheetSelectionModel();
fpSpread1.ActiveSheet.Models.Selection = defselModel;
defselModel.SelectionPolicy = FarPoint.Win.Spread.Model.SelectionPolicy.MultiRange;
Visual BasicCopy Code
Dim defselModel As New FarPoint.Win.Spread.Model.DefaultSheetSelectionModel()
FpSpread1.ActiveSheet.Models.Selection = defselModel
defselModel.SelectionPolicy = FarPoint.Win.Spread.Model.SelectionPolicy.MultiRange

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

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