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


Glossary Item Box

Gets or sets which row header column in the sheet displays the row selector when there are multiple row header columns.

Syntax

Visual Basic (Declaration) 
Public Property RowHeaderSelectorIndex As Integer
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim value As Integer
 
instance.RowHeaderSelectorIndex = value
 
value = instance.RowHeaderSelectorIndex
C# 
public int RowHeaderSelectorIndex {get; set;}

Example

This example sets the RowHeaderSelectorIndex property.
C#Copy Code
fpSpread1.Sheets[0].RowHeader.ColumnCount = 3;
fpSpread1.Sheets[0].ShowRowSelector = true;
fpSpread1.Sheets[0].RowHeaderSelectorIndex = 1;
Visual BasicCopy Code
FpSpread1.Sheets(0).RowHeader.ColumnCount = 3
FpSpread1.Sheets(0).ShowRowSelector = True
FpSpread1.Sheets(0).RowHeaderSelectorIndex = 1

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.