[]
Gets the composite style for the specified cell, column, row, or model default.
public override StyleInfo GetCompositeInfo(int row, int column, int altIndex, StyleInfo destInfo)
Public Overrides Function GetCompositeInfo(row As Integer, column As Integer, altIndex As Integer, destInfo As StyleInfo) As StyleInfo
Type | Name | Description |
---|---|---|
int | row | Model row index of the cell, or -1 to specify a column or model default |
int | column | Model column index of the cell, or -1 to specify a row or model default |
int | altIndex | Alternating row index of the cell, or -1 to skip composing any alternating style |
StyleInfo | destInfo | Specifies a StyleInfo object to use for composing the styles |
Type | Description |
---|---|
StyleInfo |
Type | Condition |
---|---|
IndexOutOfRangeException | Specified row index is not valid; must be between -1 and the total number of rows |
IndexOutOfRangeException | Specified column index is not valid; must be between -1 and the total number of columns |
IndexOutOfRangeException | Specified index is not valid; must be between 0 and the total number of styles |
Gets the style information for a cell, column, row, or model as a composite of settings. Some styles can be ignored when composing by setting excludeInfo and excludeNs Style properties with excludeNs are ignored if they are set to excludeInfo
public override StyleInfo GetCompositeInfo(int row, int column, int altIndex, StyleInfo destInfo, StyleInfo excludeInfo, NamedStyle excludedNameStyle)
Public Overrides Function GetCompositeInfo(row As Integer, column As Integer, altIndex As Integer, destInfo As StyleInfo, excludeInfo As StyleInfo, excludedNameStyle As NamedStyle) As StyleInfo
Type | Name | Description |
---|---|---|
int | row | Row index of the cell in the model, or -1 to specify an entire column or the model default |
int | column | Column index of the cell in the model, or -1 to specify an entire row or the model default |
int | altIndex | Alternating row index of the cell in the model, or -1 to skip composing any alternating style |
StyleInfo | destInfo | Style set (StyleInfo object) to use for composing the styles; if destInfo is null then a new StyleInfo is created and used |
StyleInfo | excludeInfo | StyleInfo that contains properties to ignore when composing |
NamedStyle | excludedNameStyle | Only ignore style settings of excluded name style |
Type | Description |
---|---|
StyleInfo |