Spread Windows Forms 12.0 Product Documentation
ShowEditingRowSelector Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : ShowEditingRowSelector Property
Gets or sets a value that indicates whether to display a row selector in the editing row header of the selected row for the sheet.
Syntax
'Declaration
 
Public Property ShowEditingRowSelector As Boolean
'Usage
 
Dim instance As SheetView
Dim value As Boolean
 
instance.ShowEditingRowSelector = value
 
value = instance.ShowEditingRowSelector
public bool ShowEditingRowSelector {get; set;}
Example
This example sets the ShowEditingRowSelector property.
fpSpread1.Sheets[0].ShowEditingRowSelector = true;
FarPoint.Win.Spread.SpreadView wrkbk = fpSpread1.GetRootWorkbook();
wrkbk.SetImage(FarPoint.Win.Spread.SpreadView.EditingRowSelector, Image.FromFile("C:\\Program Files (x86)\\GrapeCity\\Spread Studio\\Common\\SD.ico"));
fpSpread1.Sheets(0).ShowEditingRowSelector = True
Dim wrkbk As FarPoint.Win.Spread.SpreadView = fpSpread1.GetRootWorkbook()
wrkbk.SetImage(FarPoint.Win.Spread.SpreadView.EditingRowSelector, Image.FromFile("C:\Program Files (x86)\GrapeCity\Spread Studio\Common\SD.ico"))
See Also

Reference

SheetView Class
SheetView Members