Spread Windows Forms 6.0 Product Documentation
SelectionUnit Enumeration
Example  See Also  Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace : SelectionUnit Enumeration


Glossary Item Box

Specifies the smallest unit users or the application can select.

Syntax

Visual Basic (Declaration) 
Public Enum SelectionUnit 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As SelectionUnit
C# 
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.
C#Copy Code
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;
Visual BasicCopy Code
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 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.