GrapeCity.Xaml.SpreadSheet.Data
ResetTabStop Method (Row)
Example 


Resets whether the user can set focus to the cells in this row using the Tab key, to its default value.
Syntax
'Declaration
 
Public Sub ResetTabStop() 
'Usage
 
Dim instance As Row
 
instance.ResetTabStop()
public void ResetTabStop()
Example
This example uses the ResetTabStop method.
gcSpreadSheet1.ActiveSheet.Rows[1].Tag = "test";
gcSpreadSheet1.ActiveSheet.Rows[1].TabStop = false;
gcSpreadSheet1.ActiveSheet.Rows[1].ShrinkToFit = true;
gcSpreadSheet1.ActiveSheet.Cells[1, 0].Text = "Row with tags";
//gcSpreadSheet1.ActiveSheet.Rows[1].ResetTabStop();
//gcSpreadSheet1.ActiveSheet.Rows[1].ResetShrinkToFit();
GcSpreadSheet1.ActiveSheet.Rows(1).Tag = "test"
GcSpreadSheet1.ActiveSheet.Rows(1).TabStop = False
GcSpreadSheet1.ActiveSheet.Rows(1).ShrinkToFit = True
GcSpreadSheet1.ActiveSheet.Cells(1, 0).Text = "Row with tags"
'GcSpreadSheet1.ActiveSheet.Rows(1).ResetTabStop()
'GcSpreadSheet1.ActiveSheet.Rows(1).ResetShrinkToFit()
Requirements

Target Platforms: Windows Server 2012, Windows RT

See Also

Reference

Row Class
Row Members

 

 


Copyright © GrapeCity, inc. All rights reserved.

Support Options