Spread for ASP.NET 8.0 Product Documentation > Developer's Guide > Customizing User Interaction > Customizing Interaction with the Overall Component > Handling the Tab Key |
You can customize the use of the Tab key. By default the user can press the Tab key to advance the focus to the next active cell. You can turn off this behavior so that the component does not pay attention to the Tab key being pressed. To control this behavior, set the ProcessTab property of the FpSpread class.
Use the ProcessTab property.
Set the ProcessTab property.
C# |
Copy Code
|
---|---|
FpSpread1.ProcessTab = false;
|
VB |
Copy Code
|
---|---|
FpSpread1.ProcessTab = False
|