Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / TableViewColumn Class / DataCellStyleName Property
Example


In This Topic
    DataCellStyleName Property
    In This Topic
    Gets or sets the style name in table data cells.
    Syntax
    'Declaration
     
    Public Property DataCellStyleName As String
    'Usage
     
    Dim instance As TableViewColumn
    Dim value As String
     
    instance.DataCellStyleName = value
     
    value = instance.DataCellStyleName
    public string DataCellStyleName {get; set;}
    Example
    This example sets the style for a table column.
    fpSpread1.Sheets[0].Cells[1, 1].Text = "Last Name";
    fpSpread1.Sheets[0].Cells[1, 2].Text = "Value";
    fpSpread1.Sheets[0].Cells[2, 1].Text = "Smith";
    fpSpread1.Sheets[0].Cells[2, 2].Value = 50;
    fpSpread1.Sheets[0].Cells[3, 1].Text = "Vil";
    fpSpread1.Sheets[0].Cells[3, 2].Value = 10;
    fpSpread1.Sheets[0].Cells[4, 1].Text = "Press";
    fpSpread1.Sheets[0].Cells[4, 2].Value = 78;
    FarPoint.Win.Spread.TableView table = fpSpread1.Sheets[0].AddTable("table", 1, 1, 5, 2);
    FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
    si.BackColor = Color.LightYellow;
    si.ForeColor = Color.Gray;
    table.TableColumns[0].DataCellStyleName = "Style1";
    table.TableColumns[0].DataCellStyle = si;
    fpSpread1.Sheets(0).Cells(1, 1).Text = "Last Name"
    fpSpread1.Sheets(0).Cells(1, 2).Text = "Value"
    fpSpread1.Sheets(0).Cells(2, 1).Text = "Smith"
    fpSpread1.Sheets(0).Cells(2, 2).Value = 50
    fpSpread1.Sheets(0).Cells(3, 1).Text = "Vil"
    fpSpread1.Sheets(0).Cells(3, 2).Value = 10
    fpSpread1.Sheets(0).Cells(4, 1).Text = "Press"
    fpSpread1.Sheets(0).Cells(4, 2).Value = 78
    Dim table As FarPoint.Win.Spread.TableView = fpSpread1.Sheets(0).AddTable("table", 1, 1, 5, 2)
    Dim si As New FarPoint.Win.Spread.StyleInfo
    si.BackColor = Color.LightYellow
    si.ForeColor = Color.Gray
    table.TableColumns(0).DataCellStyleName = "Style1"
    table.TableColumns(0).DataCellStyle = si
    See Also