FlexPivot for WinForms
Style プロパティ (CellRange)
使用例 

C1.Win.C1FlexGrid.4.5.2 アセンブリ > C1.Win.C1FlexGrid 名前空間 > CellRange 構造体 : Style プロパティ
Gets or sets the style used to display every cell in the range.
シンタックス
'宣言
 
Public Property Style As CellStyle
public CellStyle Style {get; set;}
解説
Getting or setting the range style ensures that every cell in the range has the same style. If the range does not contain any cells with custom styles, this property returns null.
使用例
The code below creates a CellRange structure and uses it to apply a custom style to the entire range.
// create a style
CellStyle cs = _flex.Styles.Add("red");
cs.BackColor = Color.Red;
            
// create a cell range and assign it a style
CellRange rg = _flex.GetCellRange(1, 1, 5, 5);
rg.Style = cs;
参照

CellRange 構造体
CellRange メンバ