Spread Windows Forms 9.0 Product Documentation
SelectionUnit Enumeration
Example Example 


Specifies the smallest unit users or the application can select.
Syntax
'Declaration
 
Public Enum SelectionUnit 
   Inherits System.Enum
'Usage
 
Dim instance As SelectionUnit
public enum SelectionUnit : System.Enum 
Members
MemberDescription
Cell[0] Indicates that the smallest unit that can be selected is a cell
Column[2] Indicates that the smallest unit that can be selected is a column
Row[1] Indicates that the smallest unit that can be selected is a row
Example
This example specifies that the smallest unit that can be selected is a cell.
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;
Dim defselModel As New FarPoint.Win.Spread.Model.DefaultSheetSelectionModel()
FpSpread1.ActiveSheet.Models.Selection = defselModel
defselModel.SelectionUnit = FarPoint.Win.Spread.Model.SelectionUnit.Cell
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         FarPoint.Win.Spread.Model.SelectionUnit

Requirements

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

See Also

Reference

FarPoint.Win.Spread.Model Namespace
SelectionUnit Property (SheetView Class)

 

 


Copyright © GrapeCity, inc. All rights reserved.