Spread for ASP.NET 11 Product Documentation
TabStop Property (StyleInfo)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > StyleInfo Class : TabStop Property
Gets or sets whether the style marks cells as TabStop.
Syntax
'Declaration
 
Public Overridable Property TabStop As Boolean
'Usage
 
Dim instance As StyleInfo
Dim value As Boolean
 
instance.TabStop = value
 
value = instance.TabStop
public virtual bool TabStop {get; set;}

Property Value

Boolean: true if the user can move focus with the Tab key; false otherwise
Example
This example sets the TabStop property.
protected void Page_Load(object sender, EventArgs e)
        {
            if (this.IsPostBack) return;

            FpSpread1.Sheets[0].ColumnCount = 7;
            FpSpread1.Sheets[0].RowCount = 1000;
            FarPoint.Web.Spread.StyleInfo altrowstyle = new FarPoint.Web.Spread.StyleInfo();
            altrowstyle.BackColor = System.Drawing.Color.LemonChiffon;
            altrowstyle.ForeColor = System.Drawing.Color.Navy;
            altrowstyle.Border = new FarPoint.Web.Spread.Border(BorderStyle.Dashed, System.Drawing.Color.DarkBlue);
            altrowstyle.TabStop = true;
            altrowstyle.Font.Bold = true;
            FarPoint.Web.Spread.Model.DefaultSheetStyleModel altrowmodel = new FarPoint.Web.Spread.Model.DefaultSheetStyleModel(1000, 7);
            altrowmodel.SetDirectAltRowInfo(1, altrowstyle);
            FpSpread1.Sheets[0].StyleModel = altrowmodel;
            //altrowstyle.ResetBackColor();
            //altrowstyle.ResetBorder();
        }

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        If (IsPostBack) Then
            Return
        End If

        FpSpread1.Sheets(0).ColumnCount = 7
        FpSpread1.Sheets(0).RowCount = 1000
        Dim altrowstyle As New FarPoint.Web.Spread.StyleInfo()
        altrowstyle.BackColor = System.Drawing.Color.LemonChiffon
        altrowstyle.ForeColor = System.Drawing.Color.Navy
        altrowstyle.Border = New FarPoint.Web.Spread.Border(BorderStyle.Dashed, System.Drawing.Color.DarkBlue)
        altrowstyle.TabStop = True
        altrowstyle.Font.Bold = True
        Dim altrowmodel As New FarPoint.Web.Spread.Model.DefaultSheetStyleModel(1000, 7)
        altrowmodel.SetDirectAltRowInfo(1, altrowstyle)
        FpSpread1.Sheets(0).StyleModel = altrowmodel
        'altrowstyle.ResetBackColor()
        'altrowstyle.ResetBorder()
    End Sub
See Also

Reference

StyleInfo Class
StyleInfo Members