Spread Windows Forms 12.0 Product Documentation
SelectionUnit Property (DefaultSheetSelectionModel)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetSelectionModel Class : SelectionUnit Property
Gets or sets whether users can select cells, rows, or columns.
Syntax
'Declaration
 
Public Overrides Property SelectionUnit As SelectionUnit
'Usage
 
Dim instance As DefaultSheetSelectionModel
Dim value As SelectionUnit
 
instance.SelectionUnit = value
 
value = instance.SelectionUnit
public override SelectionUnit SelectionUnit {get; set;}

Property Value

SelectionUnit setting that determines the unit of selection
Example
This example specifies whether users can select cells, rows, or columns, or all of these.
FarPoint.Win.Spread.Model.DefaultSheetSelectionModel defselModel = new FarPoint.Win.Spread.Model.DefaultSheetSelectionModel();
fpSpread1.ActiveSheet.Models.Selection = defselModel;
defselModel.SelectionUnit = FarPoint.Win.Spread.Model.SelectionUnit.Cell | FarPoint.Win.Spread.Model.SelectionUnit.Row;
Dim defselModel As New FarPoint.Win.Spread.Model.DefaultSheetSelectionModel()
FpSpread1.ActiveSheet.Models.Selection = defselModel
defselModel.SelectionUnit = FarPoint.Win.Spread.Model.SelectionUnit.Column Or FarPoint.Win.Spread.Model.SelectionUnit.Row
See Also

Reference

DefaultSheetSelectionModel Class
DefaultSheetSelectionModel Members