GrapeCity.Windows.SpreadSheet.Data Namespace > Column Class : TabStop Property |
'Declaration <System.ComponentModel.DefaultValueAttribute()> Public Property TabStop As System.Boolean
'Usage Dim instance As Column Dim value As System.Boolean instance.TabStop = value value = instance.TabStop
[System.ComponentModel.DefaultValue()] public System.bool TabStop {get; set;}
true
if the user can set focus to cells in this column using the Tab key; otherwise, false
. The default value is true
.gcSpreadSheet1.ActiveSheet.Columns[1].Tag = "test"; gcSpreadSheet1.ActiveSheet.Columns[1].TabStop = false; gcSpreadSheet1.ActiveSheet.Columns[1].ShrinkToFit = true; gcSpreadSheet1.ActiveSheet.Cells[0, 1].Text = "Column with tags"; //gcSpreadSheet1.ActiveSheet.Columns[1].ResetTabStop(); //gcSpreadSheet1.ActiveSheet.Columns[1].ResetShrinkToFit();
GcSpreadSheet1.ActiveSheet.Columns(1).Tag = "test" GcSpreadSheet1.ActiveSheet.Columns(1).TabStop = False GcSpreadSheet1.ActiveSheet.Columns(1).ShrinkToFit = True GcSpreadSheet1.ActiveSheet.Cells(0, 1).Text = "Column with tags" 'GcSpreadSheet1.ActiveSheet.Columns(1).ResetTabStop() 'GcSpreadSheet1.ActiveSheet.Columns(1).ResetShrinkToFit()
Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional (SP4), Windows XP (SP2), Windows 2008, Windows 2003 Server (SP1)