Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / BaseSheetStyleModel Class / SetDirectInfo Method
Row index of the cell in the model, or -1 to specify an entire column or the model default
Column index of the cell in the model, or -1 to specify an entire row or the model default
Source StyleInfo object that has style information
Example


In This Topic
    SetDirectInfo Method (BaseSheetStyleModel)
    In This Topic
    Sets the direct style information for the specified cell, column, row, or model default.
    Syntax
    'Declaration
     
    
    Public Overridable Sub SetDirectInfo( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal info As StyleInfo _
    ) 
    'Usage
     
    
    Dim instance As BaseSheetStyleModel
    Dim row As Integer
    Dim column As Integer
    Dim info As StyleInfo
     
    instance.SetDirectInfo(row, column, info)
    public virtual void SetDirectInfo( 
       int row,
       int column,
       StyleInfo info
    )

    Parameters

    row
    Row index of the cell in the model, or -1 to specify an entire column or the model default
    column
    Column index of the cell in the model, or -1 to specify an entire row or the model default
    info
    Source StyleInfo object that has style information
    Remarks

    Spread uses a composite of style settings to paint the spreadsheet. For example, for a cell, the component looks at the style settings for the column and row for the cell, and the cell's own settings.

    Use this method to set the direct settings for an object. Use the GetDirectInfo methods to get the direct settings for a specified object.

    Direct cell styles override direct row styles, which override direct column styles, which override model default styles. Direct row styles use -1 for the column, direct column styles use -1 for the row, and model default styles use -1 for both the row and column.

    To return the composite information for an object, use the GetCompositeInfo method.

    This implementation does nothing.

    Example
    This example sets up the cell type for the style.
    See Also