Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.Model Namespace / DefaultSheetStyleModel Class / GetCompositeInfo Method
Model row index of the cell, or -1 to specify a column or model default
Model column index of the cell, or -1 to specify a row or model default
Alternating row index of the cell, or -1 to skip composing any alternating style
Specifies a StyleInfo object to use for composing the styles


In This Topic
    GetCompositeInfo Method (DefaultSheetStyleModel)
    In This Topic
    Gets the composite style for the specified cell, column, row, or model default.
    Syntax
    'Declaration
     
    
    Public Overrides Function GetCompositeInfo( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal altIndex As Integer, _
       ByVal destInfo As StyleInfo _
    ) As StyleInfo
    'Usage
     
    
    Dim instance As DefaultSheetStyleModel
    Dim row As Integer
    Dim column As Integer
    Dim altIndex As Integer
    Dim destInfo As StyleInfo
    Dim value As StyleInfo
     
    value = instance.GetCompositeInfo(row, column, altIndex, destInfo)
    public override StyleInfo GetCompositeInfo( 
       int row,
       int column,
       int altIndex,
       StyleInfo destInfo
    )

    Parameters

    row
    Model row index of the cell, or -1 to specify a column or model default
    column
    Model column index of the cell, or -1 to specify a row or model default
    altIndex
    Alternating row index of the cell, or -1 to skip composing any alternating style
    destInfo
    Specifies a StyleInfo object to use for composing the styles
    Exceptions
    ExceptionDescription
    Specified row index is not valid; must be between -1 and the total number of rows
    Specified column index is not valid; must be between -1 and the total number of columns
    Specified index is not valid; must be between 0 and the total number of styles
    See Also